Initial commit for the project

This commit is contained in:
2023-02-20 21:36:12 +01:00
commit 96e4e659ce
10 changed files with 153 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# https://learn.netdata.cloud/docs/agent/running-behind-nginx#ways-to-access-netdata-via-nginx
# Content suggested by Netdata documentation, excluding declarations that will
# be automatically populated by jwilder/nginx-proxy.
# To be placed in the vhost.d folder of Nginx, remember to put your domain as
# the filename with _location at the end.
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_request_headers on;
proxy_set_header Connection "keep-alive";
proxy_store off;
gzip on;
gzip_proxied any;
gzip_types *;