이 기사는 일반적인 Nginx 로그 및 설정 방법에 대해 공유합니다. 이는 특정 참고 가치가 있으므로 도움이 될 수 있습니다.
프로그래머로서 코딩보다 조금 더 중요한 것은 로그 분석과 쿼리입니다. 일반적인 로그 및 설정 방법은 다음과 같습니다.
nginx는 access_log와 error_log 두 가지 유형의 로그로 구분됩니다.
설정은 nginx.conf에 있어야 합니다. 기본적으로 소스 코드 패키지를 통해 컴파일되고 설치된 nginx 디렉터리는 다음과 같아야 합니다.
/usr/local/nginx
디렉터리에 yum이나 기타를 사용하는 경우 nginx의 특정 설치 디렉터리를 모르거나 모르는 경우
find / -name nginx.conf
or
nginx -V | grep prefix ------------- nginx version: nginx/1.13.9 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module
를 열 수 있습니다. 소스코드 패키지가 기본적으로 설치되어 있다면, 다음
vim /usr/local/nginx/nginx.conf
경로를 열어서 다음 내용을 찾아보세요
http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log logs/access.log main; ... }
log_format에서 access_log까지의 주석만 열면 nginx의 로그 사양을 정의할 수 있습니다.
Name | Annotation |
---|---|
$remote_addr | 클라이언트/사용자 IP 주소 |
$time_local | 액세스 시간 |
$ 요청 | 요청 방법+요청 주소 |
$status | 요청 상태 코드가 HTTP 상태 코드와 일치합니다 |
$body_bytes_sent | 요청된 주소 크기는 바이트 형식으로 계산됩니다 |
$http_referer | 요청 소스, 액세스 위치 |
$http_user_agent | 사용자 정보(브라우저 정보) |
$http_x_forwarded_for | 전달된 IP 주소 |
소스 코드 패키지인 경우 , 기본 설치되어 있으며, 다음과 같이 경로를 엽니다.
vim /usr/local/nginx/nginx.conf
다음 내용을 찾아
error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info;
주석을 삭제합니다.
error_log logs/error.log notice;
notice는 오류 유형이며, 그렇지 않은 경우에는 다른 오류 유형을 별도로 저장할 수 있습니다. 쓰지 마세요. 그게 전부입니다.
추천 관련 기사:
Nginx 공통 로그 분할 방법 nginx apache nginx php nginx rewrite
nginx 공통 구성위 내용은 PHP의 일반적인 Nginx 로그 및 구성 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!