From ad2338cbf39fe1b2cf1c73c26530a0ff4015aa94 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sun, 21 Jan 2024 17:01:08 +0100 Subject: [PATCH] Update nginx.conf https://github.com/YunoHost-Apps/bonfire_ynh/pull/2/#issuecomment-1902678872 --- conf/nginx.conf | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 9860611..7f1ce15 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,18 +1,27 @@ -#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; +location @app_upstream { + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header Host $http_host; + + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + + proxy_pass http://127.0.0.1:__PORT__; + proxy_redirect off; + proxy_read_timeout 240s; +} + location __PATH__/ { - # Path to source - alias __INSTALL_DIR__/_build/prod/rel/bonfire/lib/bonfire-0.9.8-classic-beta.26/priv/static; + root /var/www/bonfire/_build/prod/rel/bonfire/lib/bonfire-0.9.8-classic-beta.26/priv/static; + + index index.html; # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; -} -location /live/websocket { - proxy_pass http://127.0.0.1:__PORT__; - - # these configurations are necessary to proxy WebSocket requests - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; + + try_files $uri $uri.html $uri/index.html $uri/ @app_upstream; + }