missing OpenId Connect autodiscovery block

This commit is contained in:
ralf 2022-12-02 16:54:30 +01:00
parent 390bbf1f9e
commit 28c469c9f0

View File

@ -130,6 +130,12 @@ server {
location ~ ^(/principals/users/.*)$ {
return 301 $redirectscheme://$host/egroupware/groupdav.php$1;
}
# OpenID Connect autodiscovery
location = /.well-known/openid-configuration {
fastcgi_pass fpm;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/share/egroupware/openid/well-known-configuration.php;
}
# Nginx does NOT use index for OPTIONS requests breakng WebDAV
# for Windows, which sends OPTIONS / and stalls on Nginx 405 response!
# This also redirects all requests to root to EGroupware.
@ -177,4 +183,4 @@ server {
# proxy_set_header Connection "upgrade";
# proxy_set_header Host $http_host;
#}
}
}