guix-commits
[Top][All Lists]
Advanced

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

01/01: nginx: hydra.gnu.org: Return 410 instead of 503 for texlive-texmf


From: Ludovic Courtès
Subject: 01/01: nginx: hydra.gnu.org: Return 410 instead of 503 for texlive-texmf.
Date: Fri, 15 Apr 2016 23:16:12 +0000

civodul pushed a commit to branch master
in repository maintenance.

commit ff214b88f9a050de76eae0bdda3dae87d3bd432f
Author: Ludovic Courtès <address@hidden>
Date:   Sat Apr 16 01:15:10 2016 +0200

    nginx: hydra.gnu.org: Return 410 instead of 503 for texlive-texmf.
---
 hydra/nginx/hydra.gnu.org-locations.conf |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/hydra/nginx/hydra.gnu.org-locations.conf 
b/hydra/nginx/hydra.gnu.org-locations.conf
index d943b03..b2461ab 100644
--- a/hydra/nginx/hydra.gnu.org-locations.conf
+++ b/hydra/nginx/hydra.gnu.org-locations.conf
@@ -14,7 +14,9 @@ location /api {
 # FIXME: The "nix-store --dump …/texlive-texmf | bzip2" processes
 # rarely complete, so skip them for now.
 location ~ ^/nar/.*-(texlive-texmf-|texlive-20150523-texmf) {
-    return 503;
+    # We used to return 503 ("Service temporarily unavailable") but
+    # users were led to think it would come back later.
+    return 410;
     break;
 }
 



reply via email to

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