summaryrefslogtreecommitdiffstats
path: root/docker/graphite/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'docker/graphite/nginx.conf')
-rw-r--r--docker/graphite/nginx.conf69
1 files changed, 69 insertions, 0 deletions
diff --git a/docker/graphite/nginx.conf b/docker/graphite/nginx.conf
new file mode 100644
index 0000000..8a11e94
--- /dev/null
+++ b/docker/graphite/nginx.conf
@@ -0,0 +1,69 @@
+daemon off;
+user www-data;
+worker_processes 1;
+pid /var/run/nginx.pid;
+
+events {
+ worker_connections 1024;
+}
+
+http {
+ sendfile on;
+ tcp_nopush on;
+ tcp_nodelay on;
+ keepalive_timeout 65;
+ types_hash_max_size 2048;
+ server_tokens off;
+
+ server_names_hash_bucket_size 32;
+
+ include /etc/nginx/mime.types;
+ default_type application/octet-stream;
+
+ access_log /var/log/nginx/access.log;
+ error_log /var/log/nginx/error.log;
+
+ gzip on;
+ gzip_disable "msie6";
+
+ server {
+ listen 8000 default_server;
+ server_name _;
+
+ open_log_file_cache max=1000 inactive=20s min_uses=2 valid=1m;
+
+ location / {
+ proxy_pass http://127.0.0.1:8080;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header X-Forwarded-Server $host;
+ proxy_set_header X-Forwarded-Host $http_host;
+ proxy_set_header Host $http_host;
+
+ client_max_body_size 10m;
+ client_body_buffer_size 128k;
+
+ proxy_connect_timeout 90;
+ proxy_send_timeout 90;
+ proxy_read_timeout 90;
+
+ proxy_buffer_size 4k;
+ proxy_buffers 4 32k;
+ proxy_busy_buffers_size 64k;
+ proxy_temp_file_write_size 64k;
+ }
+
+ add_header Access-Control-Allow-Origin "*";
+ add_header Access-Control-Allow-Methods "GET, OPTIONS";
+ add_header Access-Control-Allow-Headers "origin, authorization, accept";
+
+ location /content {
+ alias /var/lib/graphite/webapp/content;
+ }
+
+ location /media {
+ alias /usr/share/pyshared/django/contrib/admin/media;
+ }
+ }
+}