update oauth

This commit is contained in:
lendry
2026-06-25 14:40:05 +03:00
parent 1796008a28
commit 6c63343fc7
19 changed files with 623 additions and 200 deletions

View File

@@ -1595,6 +1595,18 @@ build_nginx_idp_api_proxy_block() {
${nginx_proxy_headers}
}
location /oauth/ {
proxy_pass ${api_upstream}/oauth/;
proxy_http_version 1.1;
${nginx_proxy_headers}
}
location /.well-known/ {
proxy_pass ${api_upstream}/.well-known/;
proxy_http_version 1.1;
${nginx_proxy_headers}
}
EOF
}