You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When accessing the dev UI via a nginx proxy the dev UI will load but won't work because it does not find the app.js file.
Maybe this is an intended behaviour but I did not find something in the docs.
I use the docker image and my proxy nginx config is:
location /hub {
proxy_pass http://mercure/.well-known/mercure;
proxy_read_timeout 24h;
proxy_http_version 1.1;
proxy_set_header Connection "";
## Be sure to set USE_FORWARDED_HEADERS=1 to allow the hub to use those headers ##
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
}
When I access the container over an exposed port everything is working. But as soon as I use the proxy path it doesn't find the app.js file.
Regards
Alex
The text was updated successfully, but these errors were encountered:
When accessing the dev UI via a nginx proxy the dev UI will load but won't work because it does not find the app.js file.
Maybe this is an intended behaviour but I did not find something in the docs.
I use the docker image and my proxy nginx config is:
When I access the container over an exposed port everything is working. But as soon as I use the proxy path it doesn't find the app.js file.
Regards
Alex
The text was updated successfully, but these errors were encountered: