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_status.conf

15 lines
397 B
Text

server {
listen __NGINX_STATUS_PORT__;
listen [::]:__NGINX_STATUS_PORT__;
access_log /var/log/nginx/localhost-nginx_status_monitorix.lan-access.log;
error_log /var/log/nginx/localhost-nginx_status_monitorix.lan-error.log;
location /nginx_status_monitorix {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}