vi /etc/nginx/include/basic.conf
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
nginx -t
nginx -s reload
curl -i http://localhost/nginx_status
'DevLogs > Etc' 카테고리의 다른 글
Go로 hello 찍기 (0) | 2020.10.24 |
---|---|
리눅스 현재 쉘의 PID 확인 방법 (0) | 2020.03.18 |
docker-compose로 띄운 redis 모니터링 실행하기 (0) | 2020.03.15 |
netdata - mysql 모니터링 설정 메모 (0) | 2020.03.11 |
php v5.3에 xdebug v2.2.7 설치하기 (0) | 2020.02.28 |