Skip to content

Instantly share code, notes, and snippets.

View workergnome's full-sized avatar

David Newbury workergnome

View GitHub Profile
@kfl62
kfl62 / do_not_log.conf
Created July 21, 2013 16:43
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;