add SAML/OAUTH support via external user

This commit is contained in:
nd 2020-10-31 02:36:18 +01:00
parent 0b012271ca
commit 992b0b0b10
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9

View file

@ -45,6 +45,9 @@ server {
fastcgi_param HTTPS on; fastcgi_param HTTPS on;
fastcgi_param modHeadersAvailable true; fastcgi_param modHeadersAvailable true;
fastcgi_param front_controller_active true; fastcgi_param front_controller_active true;
# needed to (optionally) support saml via a REMOTE-USER header
fastcgi_param REMOTE-USER $http_REMOTE_USER;
fastcgi_pass php-handler; fastcgi_pass php-handler;
fastcgi_intercept_errors on; fastcgi_intercept_errors on;
fastcgi_request_buffering off; fastcgi_request_buffering off;