Fix sample nginx config

This commit is contained in:
An Phan 2016-02-03 23:44:47 +08:00
parent 5262fee853
commit a5adcd268b

View file

@ -10,7 +10,7 @@ server {
}
# Deny access to framework directories
location ~ /(app/|bootstrap/|config/|database/|resources/|storage/tests|vendor/) {
location ~ /(app|bootstrap|config|database|resources|storage|tests|vendor)/ {
deny all;
}