내용으로 건너뛰기
권남
사용자 도구
로그인
사이트 도구
검색
도구
문서 보기
이전 판
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
추적:
•
gpaste
nginx:log
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== nginx log ====== ===== 특정 변수를 로그로 남기기 ===== nginx 의 변수들을 로그로 남기고 싶으면 ''main''외의 ''access_log''를 하나 더 세팅하여 거기서 각종 변수의 값을 출력하는 방식을 써도 된다. <code> log_format vars '$remote_addr - $remote_user [$time_local] "$request" : "$document_root" "$fastcgi_script_name"'; # 각종 변수들을 출력한다. access_log /var/log/nginx/vars.log vars; </code> ===== 로그 끄기 ===== <code> location /resources { access_log off; } </code> ===== 특정 GET query parameter masking ===== * [[https://stackoverflow.com/questions/19265766/how-to-not-log-a-get-request-parameter-in-the-nginx-access-logs|How to not log a get request parameter in the nginx access logs? - Stack Overflow]] * [[https://forum.nginx.org/read.php?11,234313,234314|Masking query string password in access log]] <code> log_format filter '$remote_addr - $remote_user [$time_local] ' '"$temp" $status $body_bytes_sent "$http_referer" "$http_user_agent"'; # Other Configs server { #Server Configs location / { # location 을 구체적으로 명시하는게 나을 듯 보임. set $temp $request; if ($temp ~ (.*)password=[^&]*(.*)) { set $temp $1password=****$2; } access_log /opt/current/log/nginx_access.log filter; } } </code>
nginx/log.txt
· 마지막으로 수정됨: 2020/08/26 15:48 저자
kwon37xi
문서 도구
문서 보기
이전 판
역링크
맨 위로