Hi, i try to run cmk in an Iframe with an reverse proxy and all pages are working expect the login.
I already edited the anchestor attribute.
nginx:
location /cmk/ {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://cmk:5000/sma/check_mk/;
}