1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

fix nginx path traversal

This commit is contained in:
Jean-Baptiste Holcroft 2019-08-28 08:30:33 +02:00
parent dbd07e4d65
commit b7b857836e

View file

@ -1,3 +1,4 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
# https://github.com/WeblateOrg/weblate/blob/master/examples/weblate.nginx.conf
location ^__PATH__/favicon.ico$ {
# DATA_DIR/static/favicon.ico
@ -23,7 +24,7 @@ location __PATH__/media/ {
expires 30d;
}
location __PATH__ {
location __PATH__/ {
# Path to source
alias __FINALPATH__/ ;
@ -34,4 +35,4 @@ location __PATH__ {
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
}