nginx 의 빠 른 프로필 찾기

973 단어
nginx 의 설정 은 nginx.conf 파일 에 놓 여 있 습 니 다. 일반적으로 서버 에 존재 하 는 nginx. conf 파일 을 다음 명령 으로 볼 수 있 습 니 다.
locate nginx.conf

/usr/local/nginx/conf/nginx.conf
/usr/local/nginx/conf/nginx.conf.default

서버 에 여러 개의 nginx.conf 파일 이 존재 한다 면 실제 호출 된 프로필 이 어떤 프로필 인지 모 르 기 때문에 실제 호출 된 프로필 을 찾 아야 수정 할 수 있 습 니 다.
  • 프로 세 스 를 통 해 프로필 보기
  • ps aux | grep nginx
    root 873 0.0 0.0 23728 1116 ? Ss 09:26 0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
    

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

    nginx 설정 파일 의 경로: / usr / local / nginx / conf / nginx. conf

    좋은 웹페이지 즐겨찾기