Skip to content

Instantly share code, notes, and snippets.

@devanrus
Forked from kfl62/do_not_log.conf
Created August 31, 2017 19:48
Show Gist options
  • Save devanrus/d4be62f2ca306e6d8d61bb1f588c1e00 to your computer and use it in GitHub Desktop.
Save devanrus/d4be62f2ca306e6d8d61bb1f588c1e00 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