Skip to content

Instantly share code, notes, and snippets.

@dlucian
Forked from kfl62/do_not_log.conf
Created June 30, 2016 11:53
Show Gist options
  • Save dlucian/0d48d39580b3657028cb3edf34d9e169 to your computer and use it in GitHub Desktop.
Save dlucian/0d48d39580b3657028cb3edf34d9e169 to your computer and use it in GitHub Desktop.
nginx configuration file, (do not log robots.txt and favicon.ico requests)
# Designed to be included in any server {} block.
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment