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

Fix subpath

This commit is contained in:
yalh76 2019-03-19 20:22:30 +01:00
parent d4d9d1eb70
commit 27dae7d92f
2 changed files with 8 additions and 3 deletions

View file

@ -8,7 +8,7 @@ PORT=__PORT__
DB_DIR=__FINALPATH__/distbin-db
# The external URL
EXTERNAL_URL=https://__DOMAIN_URI__
EXTERNAL_URL=https://__DOMAIN_URI__/
# The internal URL
INTERNAL_URL=http://localhost:__PORT__/

View file

@ -6,9 +6,14 @@ location __PATH__/ {
rewrite ^ https://$server_name$request_uri? permanent;
}
rewrite ^/distbin/(.*) /$1 break;
proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header Host $host;
# proxy_buffering off;
proxy_pass_request_headers on;
proxy_redirect ~^/(.*) $scheme://$http_host/distbin/$1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;