Browse Source

[fix] Correct regex for hidden files in nginx.conf

pull/1/head
Jérôme Lebleu 10 years ago
parent
commit
b6886dcbec
  1. 2
      conf/nginx.conf

2
conf/nginx.conf

@ -26,6 +26,6 @@ location {LOCATION} {
}
# Deny access to hidden files and directories
location ~ ^{PATH}/. {
location ~ ^{PATH}/\. {
deny all;
}
Loading…
Cancel
Save