[SOLVED] Accessing webui locally and behind a reverse proxy

I can access webui well from within my network at https://mineos:8443. I also want to have access from the internet. I am running an apache webserver proxying to the above server. When I try to access the webui from the internet I get a
.
It looks like the Javascript parts of the webpage can’t cope with changing base urls mineos:8443 and mineos.baloghs.de. Any idea how to configure the webserver properly?
This is what the relevant Apache config looks like:

SSLProxyEngine on
SSLProxyCheckPeerName off
SSLProxyCheckPeerCN off
ProxyPass / https://mineos:8443
ProxyPassReverse / https://mineos:8443

Found the solution. Be sure to append slashes in the proxy statements.

SSLProxyEngine on
SSLProxyCheckPeerName off
SSLProxyCheckPeerCN off
ProxyPass / https://mineos:8443/
ProxyPassReverse / https://mineos:8443/

2 Likes

Thank you so much for following up with the solution :slight_smile: