We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trying to access the kubebox behind reverse proxy [nginx] and getting the error as in screenshot attached.
nginx reverse proxy config : set $upstream_kubebox http://kubebox.kubebox.svc.cluster.local:8080; location ~* (/kubebox|/master/api(.)$) { rewrite /kubebox/(.)$ /$1 break; proxy_pass $upstream_kubebox; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; auth_ldap off; }
it is working fine with service as a load balance but not working behind nginx
The text was updated successfully, but these errors were encountered:
Could you make sure headers are passed? You may want to have a look at the reverse proxy Kubebox does:
kubebox/docs/nginx.conf
Line 16 in 4ae0a29
Sorry, something went wrong.
No branches or pull requests
trying to access the kubebox behind reverse proxy [nginx] and getting the error as in screenshot attached.
nginx reverse proxy config :
set $upstream_kubebox http://kubebox.kubebox.svc.cluster.local:8080;
location ~* (/kubebox|/master/api(.)$) {
rewrite /kubebox/(.)$ /$1 break;
proxy_pass $upstream_kubebox;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
auth_ldap off;
}
it is working fine with service as a load balance but not working behind nginx
The text was updated successfully, but these errors were encountered: