Fixed config sample for Nginx

This commit is contained in:
Simon Kurowski 2018-10-08 22:45:34 +02:00
parent d115ec72fc
commit c4d3b623e8
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ Create an `nginx_status.conf` configuration file to expose metric data:
server {
listen 8090;
location /nginx_status {
stub_status on;
access_log on;
stub_status;
access_log off;
}
}
```