From 9c8f89a41e99289ca181c2e236f4532ee6b49195 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Sat, 17 Sep 2016 13:05:32 +0200 Subject: [PATCH] fix nginx permission issues --- lychee/nginx.conf | 6 ++++++ privatebin/nginx.conf | 6 ++++++ rainloop/nginx.conf | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/lychee/nginx.conf b/lychee/nginx.conf index cdfa8ee..64ebeb0 100644 --- a/lychee/nginx.conf +++ b/lychee/nginx.conf @@ -21,6 +21,12 @@ http { tcp_nopush on; tcp_nodelay on; server_tokens off; + + fastcgi_temp_path /tmp/fastcgi 1 2; + client_body_temp_path /tmp/client_body 1 2; + proxy_temp_path /tmp/proxy 1 2; + uwsgi_temp_path /tmp/uwsgi 1 2; + scgi_temp_path /tmp/scgi 1 2; gzip on; gzip_comp_level 5; diff --git a/privatebin/nginx.conf b/privatebin/nginx.conf index 6b58e56..390ceed 100644 --- a/privatebin/nginx.conf +++ b/privatebin/nginx.conf @@ -21,6 +21,12 @@ http { tcp_nopush on; tcp_nodelay on; server_tokens off; + + fastcgi_temp_path /tmp/fastcgi 1 2; + client_body_temp_path /tmp/client_body 1 2; + proxy_temp_path /tmp/proxy 1 2; + uwsgi_temp_path /tmp/uwsgi 1 2; + scgi_temp_path /tmp/scgi 1 2; gzip on; gzip_comp_level 5; diff --git a/rainloop/nginx.conf b/rainloop/nginx.conf index 4bece77..1b29c1b 100644 --- a/rainloop/nginx.conf +++ b/rainloop/nginx.conf @@ -21,6 +21,12 @@ http { tcp_nopush on; tcp_nodelay on; server_tokens off; + + fastcgi_temp_path /tmp/fastcgi 1 2; + client_body_temp_path /tmp/client_body 1 2; + proxy_temp_path /tmp/proxy 1 2; + uwsgi_temp_path /tmp/uwsgi 1 2; + scgi_temp_path /tmp/scgi 1 2; gzip on; gzip_comp_level 5;