Last active
October 25, 2017 12:12
-
-
Save islander/7541352 to your computer and use it in GitHub Desktop.
nginx.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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