ubuntu + nginx 간단 한 디 버 깅 명령

1104 단어 Linux
환경: ubuntu 16.04 설치 apt - get update & & apt - get install - y -- no - install - recommends nginx 시작 service 시작: service nginx start 바 이 너 리 파일 시작: / usr / sbin / nginx 신호 명령 예: nginx - s reload 는 nginx 를 다시 시작 하지 않 은 상태 에서 서비스 기 설정 파일 stop 을 새로 고 칠 수 있 습 니 다. — fast shutdown quit — graceful shutdown reload — reloading the configuration file reopen — reopening the log files 디 버 깅 프로필 nginx - t nginx 정적 검사 프로필 을 실행 하지 않 습 니 다.
nginx: [emerg] directive "server_name" is not terminated by ";" in /etc/nginx/sites-enabled/default:43
nginx: configuration file /etc/nginx/nginx.conf test failed

 
 
설정 파일 / etc / nginx / nginx. conf
 
 
 
user www-data;
worker_processes auto;
pid /run/nginx.pid;
daemon off;

events {
    worker_connections 768;
    # multi_accept on;
}

http {
    ...
    ##
    # Logging Settings
    ##
    
    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;
    ...

로그 파일: 설정 파일 에 default path: / var / log / nginx / error. log 를 설정 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기