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이고 호출이 유효한 것으로 나타났습니다.
더 많은 Nginx 관련 지식을 알고 싶다면 Nginx 사용법 튜토리얼 칼럼을 방문해 보세요!
위 내용은 nginx의 구성 파일은 어디에 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!