summaryrefslogtreecommitdiffstats
path: root/docker/storperf-graphite/etc/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'docker/storperf-graphite/etc/nginx/nginx.conf')
-rw-r--r--docker/storperf-graphite/etc/nginx/nginx.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/docker/storperf-graphite/etc/nginx/nginx.conf b/docker/storperf-graphite/etc/nginx/nginx.conf
new file mode 100644
index 0000000..f2ab7f7
--- /dev/null
+++ b/docker/storperf-graphite/etc/nginx/nginx.conf
@@ -0,0 +1,20 @@
+worker_processes 1;
+pid /var/run/nginx.pid;
+daemon off;
+
+events {
+ worker_connections 1024;
+ use epoll;
+}
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ sendfile on;
+ keepalive_timeout 65;
+
+ gzip on;
+
+ include /etc/nginx/conf.d/*;
+}