최근 로컬 nginx 개발 환경을 구성할 때 서버 세그먼트에 access_log가 지정되지 않은 경우, http 세그먼트에 access_log 매개변수가 지정되지 않은 경우 기본적으로 로그/access.log 파일에 기록되는 문제를 발견했습니다. 기본 access_log이며, 값은 "logs/access.log"이며, 모든 서버의 접속 로그입니다. 하지만 nginx 웹사이트에서 이 구성의 기본값을 찾지 못했습니다.
필요하지 않은 경우 http 세그먼트에 access_log off 줄을 추가한 다음 특정 서버에 기록하려는 로그를 구성하세요. 개발 환경에서는 기본적으로 로그를 작성하지 않습니다. 즉, access_log를 구성하지 않고 필요할 때만 엽니다.
nginx의 http 세그먼트에서 액세스 로그를 설정합니다.
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; log_format gzip '$remote_addr - $remote_user [$time_local] "$request" ' '$status $bytes_sent "$http_referer" ' '"$http_user_agent" "$gzip_ratio"'; log_format download '$remote_addr - $remote_user [$time_local] "$request" ' '$status $bytes_sent "$http_referer" "$http_user_agent" ' '"$http_range" "$sent_http_content_range"'; #access_log logs/access.log main; access_log off;
위 내용은 액세스 및 nginx 콘텐츠를 포함하여 nginx access_log의 완전한 종료를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.