2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

nginx: hydra.gnu.org: Do not serve nars for texlive-texmf.

This commit is contained in:
Ludovic Courtès 2016-03-24 11:33:19 +01:00
parent 6b14dc88b5
commit 249a99598f

View file

@ -11,6 +11,13 @@ location /api {
proxy_pass http://127.0.0.1:3000;
}
# 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;
break;
}
location /nar/ {
proxy_pass http://127.0.0.1:3000;