'nginx accesslog'에 해당되는 글 1건
- 2014.06.02 :: 특정 파일 호출 시 access 로그 남기지 않게 하기
web server/nginx
2014. 6. 2. 18:43
if ( $request_uri ~ "/file.txt" ) {
access_log off;
}
/file.txt 호출 시 로그 기록을 남기지 않는다.
'web server > nginx' 카테고리의 다른 글
connection processing methods (연결처리방법) - epoll, kqueue, poll (0) | 2014.08.06 |
---|---|
nginx php-fpm 설정 (0) | 2014.06.02 |
특정 요청만 access 로그 남기지 않게 하기 (0) | 2014.05.14 |
nginx worker 설정 (0) | 2014.04.18 |
nginx 로그 설정 (0) | 2014.04.18 |