1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/my_webapp_ynh.git synced 2025-11-03 11:38:39 +01:00

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

This commit is contained in:
Jérôme Lebleu 2016-05-14 20:47:45 +02:00
commit b6886dcbec

View file

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