1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00

sub-path fix

This commit is contained in:
anmol26s 2018-09-13 16:04:41 +05:30
parent 7e16185a8c
commit 3094f83e1c

View file

@ -32,12 +32,13 @@ location __PATH__ {
} }
# PHP configuration end # PHP configuration end
# Deny access to /data/config.ini.php
location = /data/config.ini.php {
deny all;
return 404;
}
# Include SSOWAT user panel. # Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;
} }
# Deny access to /data/config.ini.php
location = __PATH__/data/config.ini.php {
deny all;
return 404;
}