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
TLS termination is often handled outside of Docker and the current nginx config enforces a redirect to a https:// url - this creates infinite redirect loops if the docker setup is used i.e. behind an Apache with ProxyPass to the HTTP-Port.
Of course it's possible to move the nginx part into Apache or traefik or something else but a working setup out of the box that doesn't enforce a redirect to HTTPS or a configuration knob for that would be nice :)
Workaround for Apache2 Proxy:
ProxyPreserveHost on
SSLProxyEngine on
# we can't really verifiy that self-signed cert
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ProxyPass / https://localhost:4443/
ProxyPassReverse / https://localhost:4443/
Thanks for providing these docker images!
The text was updated successfully, but these errors were encountered:
@mtippmann, thank you. You're perfectly right! I will try to implement a change soon, but in the meantime, feel free to issue a PR if you get to something working on your side.
TLS termination is often handled outside of Docker and the current nginx config enforces a redirect to a https:// url - this creates infinite redirect loops if the docker setup is used i.e. behind an Apache with ProxyPass to the HTTP-Port.
Of course it's possible to move the nginx part into Apache or traefik or something else but a working setup out of the box that doesn't enforce a redirect to HTTPS or a configuration knob for that would be nice :)
Workaround for Apache2 Proxy:
Thanks for providing these docker images!
The text was updated successfully, but these errors were encountered: