Nginx 도움말

1149 단어
Nginx 도움말
E:\EQX-projects
ginx-1.8.1>nginx -? nginx version: nginx/1.8.1 Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives] Options: -?,-h : this help -v: show version and exit -V: show version and configure options then exit -t: test configuration and exit -q: suppress non-error messages during configuration testing -s signal : send signal to a master process: stop, quit, reopen, reload -p prefix : set prefix path (default: NONE) -c filename : set configuration file (default: conf/nginx.conf) -g directives : set global directives out of configuration file

요약:
  • - t 설정 검사
  • - s reload nginx 설정 수정 후 다시 불 러 오기
  • nginx {start | restart | stop} nginx 시작 / 재 부팅 / 정지
  • 차이 점 주의: (index. html 에서 인용 한 js, css 가 정상적으로 접근 할 수 있 는 지 여부)
        location /details {
            root   html;
            index  index.html index.htm;
            try_files $uri $uri/ /details/index.html =404;
        }
    
        location /details {
            root   html/details;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html =404;
        }

    좋은 웹페이지 즐겨찾기