commit 1557ac02dfd2e0796dee1e551e45b7f8ebd8db36
parent 15a3cd86080ada3b97d7406d75767638b318d2f6
Author: Nils Gillmann <ng0@n0.is>
Date: Mon, 29 Oct 2018 18:19:59 +0000
nginx locations which need to be defined, otherwise store locations are picked up
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/guix/etc/nginx/nginx.conf b/guix/etc/nginx/nginx.conf
@@ -36,6 +36,11 @@ http {
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';
+ client_body_temp_path /var/run/nginx/body;
+ proxy_temp_path /var/run/nginx/proxy;
+ fastcgi_temp_path /var/run/nginx/fastcgi;
+ uwsgi_temp_path /var/run/nginx/uwsgi;
+ scgi_temp_path /var/run/nginx/scgi;
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log notice;