kubernetes-reverseproxy
kubernetes-reverseproxy copied to clipboard
proxy_redirect
I've just found that redirects behind proxy don't work with default template of nginx.conf.
I think proxy_redirect off;
should be replaced with something like
proxy_redirect ~^(http://[^:]+):\d+(/.+)$ $1$2;