1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodered_ynh.git synced 2024-09-03 19:46:25 +02:00
nodered_ynh/conf/nginx.conf
tituspijean ac80557832 [fix] proxy pass path for dashboard extension
Dashboard extension "manually" encodes the path /ui, which requires
to rewrite the nginx proxy path and set the proper settings in the app
2020-04-03 13:05:15 +02:00

18 lines
555 B
Nginx Configuration File

location ^~ __PATH__/ {
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
proxy_pass http://localhost:__PORT____PATH__/;
proxy_set_header Host $host;
proxy_redirect http:// https://;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}