nginx의 구성은 nginx.conf 파일에 있습니다. 일반적으로 다음 명령을 사용하여 서버에 존재하는 nginx.conf 파일을 볼 수 있습니다.
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...
서버에 nginx.conf 파일이 여러 개 있으면 실제로 어떤 구성 파일이 호출되는지 알 수 없으므로 실제로 호출되는 구성 파일을 찾아서 수정해야 합니다.
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
사용 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.conf 파일에 있습니다. 일반적으로 다음 명령을 사용하여 서버에 존재하는 nginx.conf 파일을 볼 수 있습니다.
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...
서버에 nginx.conf 파일이 여러 개 있으면 실제로 어떤 구성 파일이 호출되는지 알 수 없으므로 실제로 호출되는 구성 파일을 찾아서 수정해야 합니다.
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
사용 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에서 구성 파일을 빠르게 보는 방법에 대해 설명합니다. 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트를 참고하세요.
관련 권장 사항:
php 여러 개의 1차원 숫자를 2차원 배열로 결합하는 방법
mysql secure-file-priv 옵션 문제 해결
위 내용은 nginx 구성 파일을 빠르게 보는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!