1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monitorix_ynh.git synced 2024-09-03 19:46:06 +02:00
monitorix_ynh/conf/nginx.conf

21 lines
609 B
Nginx Configuration File
Raw Normal View History

location __PATH__ {
proxy_pass http://127.0.0.1:__PORT____PATH__;
2017-01-05 23:37:07 +01:00
allow 127.0.0.0/8;
location ~ ^__PATH__/(.+\.png)$ {
2017-01-05 23:37:07 +01:00
alias /var/lib/monitorix/www/$1;
}
2017-05-18 22:16:45 +02:00
proxy_set_header Host $host;
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;
2017-01-05 23:37:07 +01:00
2017-01-31 21:26:13 +01:00
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
2017-01-05 23:37:07 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}