Skip to content

Instantly share code, notes, and snippets.

@islander
Last active October 25, 2017 12:12
Show Gist options
  • Save islander/7541352 to your computer and use it in GitHub Desktop.
Save islander/7541352 to your computer and use it in GitHub Desktop.
nginx.conf
#include conf.d/restrictions.conf;
# disable logging for favicon
location = /favicon.ico {
return 204;
log_not_found off;
access_log off;
}
# disable logging for robots.txt
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# deny all attempts to access hidden files such as .htaccess, .htpasswd, .git.
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment