guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: hydra: nginx: Caching mirrors *really* proxy ci.g


From: Leo Famulari
Subject: branch master updated: hydra: nginx: Caching mirrors *really* proxy ci.guix.gnu.org.
Date: Thu, 03 Dec 2020 14:45:56 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository maintenance.

The following commit(s) were added to refs/heads/master by this push:
     new 5f682a0  hydra: nginx: Caching mirrors *really* proxy ci.guix.gnu.org.
5f682a0 is described below

commit 5f682a081564fa454e6317d9c126709d9f128bf9
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Thu Dec 3 14:43:48 2020 -0500

    hydra: nginx: Caching mirrors *really* proxy ci.guix.gnu.org.
    
    This is a followup to commit 577b1d5b694f17cda75d5cb8576ca1fa81b8e784.
    
    * hydra/nginx/mirror-locations.conf: Fix 'cuix' typo.
---
 hydra/nginx/mirror-locations.conf | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/hydra/nginx/mirror-locations.conf 
b/hydra/nginx/mirror-locations.conf
index 18ce0df..5714d78 100644
--- a/hydra/nginx/mirror-locations.conf
+++ b/hydra/nginx/mirror-locations.conf
@@ -10,7 +10,7 @@ location = /index.html {
 }
 
 location = /nix-cache-info {
-    proxy_pass http://ci.cuix.gnu.org/nix-cache-info;
+    proxy_pass http://ci.guix.gnu.org/nix-cache-info;
 
     # Cache this file since that's always the first thing we ask for.
     proxy_cache static;
@@ -26,7 +26,7 @@ location = /nix-cache-info {
 
 # Match both /nar and /guix/nar.
 location ~ /nar/ {
-    proxy_pass http://ci.cuix.gnu.org;
+    proxy_pass http://ci.guix.gnu.org;
 
     client_body_buffer_size 256k;
 
@@ -58,7 +58,7 @@ location ~ /nar/ {
 }
 
 location ~ \.narinfo$ {
-    proxy_pass http://ci.cuix.gnu.org;
+    proxy_pass http://ci.guix.gnu.org;
 
     # For HTTP pipelining.  This has a dramatic impact on performance.
     client_body_buffer_size 128k;
@@ -66,7 +66,7 @@ location ~ \.narinfo$ {
     # Narinfos requests are short, serve many of them on a connection.
     keepalive_requests 600;
 
-    # Do not tolerate slowness of ci.cuix.gnu.org when fetching
+    # Do not tolerate slowness of ci.guix.gnu.org when fetching
     # narinfos: better return 504 quickly than wait forever.
     proxy_connect_timeout 2s;
     proxy_read_timeout 2s;
@@ -77,7 +77,7 @@ location ~ \.narinfo$ {
     # blindly honor.
     proxy_cache narinfo;
 
-    proxy_cache_valid 504 5m;  # timeout, when ci.cuix.gnu.org is overloaded
+    proxy_cache_valid 504 5m;  # timeout, when ci.guix.gnu.org is overloaded
 
     # Advertise a shorter TTL than what upstream provides to be on the
     # safe side.
@@ -92,12 +92,12 @@ location ~ \.narinfo$ {
 }
 
 location /log/ {
-    proxy_pass http://ci.cuix.gnu.org;
+    proxy_pass http://ci.guix.gnu.org;
 
     # Enable caching for build logs.
     proxy_cache logs;
     proxy_cache_valid 200 60d;   # cache hits.
-    proxy_cache_valid 504 3m;    # timeout, when ci.cuix.gnu.org is overloaded
+    proxy_cache_valid 504 3m;    # timeout, when ci.guix.gnu.org is overloaded
     proxy_cache_valid any 20m;   # cache misses/others
 
     proxy_ignore_client_abort on;
@@ -110,7 +110,7 @@ location /log/ {
 
 # Content-addressed files served by 'guix publish'.
 location /file/ {
-    proxy_pass http://ci.cuix.gnu.org;
+    proxy_pass http://ci.guix.gnu.org;
 
     proxy_cache cas;
     proxy_cache_valid 200 200d;        # cache hits



reply via email to

[Prev in Thread] Current Thread [Next in Thread]