[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: hydra: bayfront: Switch bayfront to use hydra-gui
From: |
Christopher Baines |
Subject: |
branch master updated: hydra: bayfront: Switch bayfront to use hydra-guix-129 directly. |
Date: |
Sun, 18 Jun 2023 16:00:37 -0400 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository maintenance.
The following commit(s) were added to refs/heads/master by this push:
new f1dc3e0 hydra: bayfront: Switch bayfront to use hydra-guix-129
directly.
f1dc3e0 is described below
commit f1dc3e08e32b1ea82c7b960bbeb1a336fea8891a
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sun Jun 18 20:58:52 2023 +0100
hydra: bayfront: Switch bayfront to use hydra-guix-129 directly.
Rather than reverse proxying requests to bishan, which then would
reverse proxy to hydra-guix-129.
This will mean more requests get sent to hydra-guix-129 so we'll have
to monitor how well this works.
* hydra/bayfront.scm (%bordeaux.guix.gnu.org-nginx-servers): Reverse
proxy nar requests to hydra-guix-129.
---
hydra/bayfront.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/hydra/bayfront.scm b/hydra/bayfront.scm
index 89c8a6d..878b81d 100644
--- a/hydra/bayfront.scm
+++ b/hydra/bayfront.scm
@@ -618,8 +618,6 @@ add_header Content-Type text/plain;")))
"proxy_set_header Connection \"\";")))
(nginx-location-configuration
(uri "/file/")
- ;; TODO: As bishan now doesn't have all the nars, this
- ;; won't work as well as before.
(body '("proxy_pass https://nar-storage;")))
(nginx-named-location-configuration
(name "nar-storage")
@@ -1198,7 +1196,7 @@ proxy_set_header Via $via;"
"keepalive_requests 10000;")))
(nginx-upstream-configuration
(name "nar-storage")
- (servers '("bishan.guix.gnu.org:443")))
+ (servers '("hydra-guix-129.guix.gnu.org:443")))
(nginx-upstream-configuration
(name "qa-frontpage")
(servers '("localhost:8765")))
@@ -1241,7 +1239,7 @@ proxy_set_header Via $via;"
(level 19)
(directory-max-size (* 400 GiB)))))
(cached-compression-workers 8)
- (cached-compression-nar-source "https://bishan.guix.gnu.org")
+ (cached-compression-nar-source
"https://hydra-guix-129.guix.gnu.org")
(extra-environment-variables
'("GC_RETRY_SIGNALS=0"))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: hydra: bayfront: Switch bayfront to use hydra-guix-129 directly.,
Christopher Baines <=