Can you describe in details how to set Single Sign-On up for Graylog?
Graylog servers are running behind NGINX. Here is part of nginx.conf:
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header Remote-User $remote_user;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Graylog-Server-URL https://$server_name/;
Graylog is running on v4.0.1.
Trusted Header Authentication is enabled (Username header → Remote-User).
What else needs to be done to make Graylog working with PingFederate ?
There are no errors either in Graylog or NGINX. When I load a start page, I can log in with AD credentials or local user. How does HTTP Trusted Header actually work in this case and how to debug it ?