1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/graphite/nginx.conf

24 lines
514 B
Nginx Configuration File
Raw Normal View History

2020-03-24 08:26:40 +00:00
server {
listen 8080 default_server;
location = /favicon.ico {
return 204;
}
location /static {
alias /opt/graphite/static;
expires max;
}
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
proxy_connect_timeout 10;
proxy_read_timeout 10;
proxy_pass http://127.0.0.1:8000;
}
}