Skip to content

Instantly share code, notes, and snippets.

@ajax13
Forked from islander/restrictions.conf
Created October 25, 2017 12:12
Show Gist options
  • Save ajax13/268bfa22d6037759ce6cce64afd31a9d to your computer and use it in GitHub Desktop.
Save ajax13/268bfa22d6037759ce6cce64afd31a9d 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