mirror of
https://github.com/YunoHost-Apps/monitorix_ynh.git
synced 2024-09-03 19:46:06 +02:00
15 lines
No EOL
370 B
Text
15 lines
No EOL
370 B
Text
server {
|
|
listen __PORT__;
|
|
listen [::]:__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;
|
|
}
|
|
} |