summaryrefslogtreecommitdiffstats
path: root/files/etc/nginx/nginx.conf
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-10-05 09:07:54 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-10-05 09:07:54 +0200
commit6a486b088b957a2af6d1dfeb692ecef6ec8c5e06 (patch)
tree9832c92a1a20ae2f8b3627248e4784442befb7d7 /files/etc/nginx/nginx.conf
parent6348285571e9877990317303b5508b737686faef (diff)
downloadmunin-6a486b088b957a2af6d1dfeb692ecef6ec8c5e06.tar.gz
munin-6a486b088b957a2af6d1dfeb692ecef6ec8c5e06.tar.bz2
munin-6a486b088b957a2af6d1dfeb692ecef6ec8c5e06.tar.xz
munin-6a486b088b957a2af6d1dfeb692ecef6ec8c5e06.zip
Optimize dockerfileHEADmaster
Diffstat (limited to 'files/etc/nginx/nginx.conf')
-rw-r--r--files/etc/nginx/nginx.conf31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/etc/nginx/nginx.conf b/files/etc/nginx/nginx.conf
new file mode 100644
index 0000000..1634164
--- /dev/null
+++ b/files/etc/nginx/nginx.conf
@@ -0,0 +1,31 @@
+worker_processes 4;
+pid /tmp/nginx.pid;
+error_log /proc/self/fd/2 warn;
+
+events {
+ worker_connections 768;
+ # multi_accept on;
+}
+
+http {
+ sendfile on;
+ tcp_nopush on;
+ tcp_nodelay on;
+ keepalive_timeout 65;
+ types_hash_max_size 2048;
+
+ include /etc/nginx/mime.types;
+ default_type application/octet-stream;
+
+ #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";
+
+ include /etc/nginx/conf.d/*.conf;
+ include /etc/nginx/sites-enabled/*;
+}