summaryrefslogtreecommitdiffstats
path: root/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf11
1 files changed, 7 insertions, 4 deletions
diff --git a/nginx.conf b/nginx.conf
index 7fb8e46..1634164 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -1,6 +1,6 @@
-user munin;
worker_processes 4;
-pid /run/nginx.pid;
+pid /tmp/nginx.pid;
+error_log /proc/self/fd/2 warn;
events {
worker_connections 768;
@@ -17,8 +17,11 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
- access_log /var/log/nginx/access.log;
- error_log /var/log/nginx/error.log;
+ #client_body_temp_path /tmp/nginx/temp;
+ #proxy_temp_path /tmp/nginx/proxy;
+
+ access_log /proc/self/fd/1;
+ error_log /proc/self/fd/2;
gzip on;
gzip_disable "msie6";