nginx 설정 파일 을 빠르게 보 는 방법

2532 단어 Nginx
nginx 의 설정 은 nginx. conf 파일 에 있 습 니 다. 일반적으로 서버 에 존재 하 는 nginx. conf 파일 을 다음 명령 으로 볼 수 있 습 니 다.
locate nginx.conf
/usr/local/etc/nginx/nginx.conf
/usr/local/etc/nginx/nginx.conf.default
...

서버 에 nginx. conf 파일 이 여러 개 존재 한다 면 실제 호출 된 프로필 이 어떤 프로필 인지 모 르 기 때문에 실제 호출 된 프로필 을 찾 아야 수정 할 수 있 습 니 다.
nginx 실제 호출 프로필 보기
1. nginx 경로 보기
ps aux|grep nginx
root              352   0.0  0.0  2468624    924   ??  S    10:43     0:00.08 nginx: worker process  
root              232   0.0  0.0  2459408    532   ??  S    10:43     0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off;  
root             2345   0.0  0.0  2432772    640 s000  S+    1:01     0:00.00 grep nginx

nginx 의 경 로 는: / usr / local / opt / nginx / bin / nginx 입 니 다.
2. nginx 프로필 경로 보기
nginx 의 - t 매개 변 수 를 사용 하여 설정 검 사 를 하면 실제 호출 된 프로필 경로 와 호출 여 부 를 알 수 있 습 니 다.
/usr/local/opt/nginx/bin/nginx -t
nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful

테스트 를 통 해 알 수 있 듯 이 nginx 의 설정 파일 경 로 는: / usr / local / etc / nginx / nginx. conf 이 고 호출 이 유효 합 니 다.

좋은 웹페이지 즐겨찾기