diff options
author | Collin J. Doering | 2024-05-31 10:05:30 -0400 |
---|---|---|
committer | Collin J. Doering | 2024-05-31 10:05:30 -0400 |
commit | 80570af8dd0176ac301e5be48aeefed8789c5856 (patch) | |
tree | 34b42696c01914a83390d96523b40ba35ace9cf2 | |
parent | 42306169cb6c44ce191ac868f3d5167112b7e60c (diff) | |
download | guix-north-america-80570af8dd0176ac301e5be48aeefed8789c5856.tar.gz |
balg02: Send nginx logs to /var/run/nginx/...
-rw-r--r-- | .guix/guix-na/config/balg02.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm index ead38a0..7945465 100644 --- a/.guix/guix-na/config/balg02.scm +++ b/.guix/guix-na/config/balg02.scm @@ -300,7 +300,7 @@ synonymous IETF language tags that should be mapped to the same $lang." (locations (balg02-locations %publish-url)) (raw-content (list - "access_log /var/run/anonip/http.access.log;" + "access_log /var/run/nginx/http.access.log;" "proxy_set_header X-Forwarded-Host $host;" "proxy_set_header X-Forwarded-Port $server_port;" "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;"))) @@ -316,7 +316,7 @@ synonymous IETF language tags that should be mapped to the same $lang." ;; (append ;; %tls-settings ;; (list - ;; "access_log /var/run/anonip/https.access.log;" + ;; "access_log /var/run/nginx/https.access.log;" ;; "proxy_set_header X-Forwarded-Host $host;" ;; "proxy_set_header X-Forwarded-Port $server_port;" ;; "proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;" |