Nginx: fix /api/scopes for OAuth

This commit is contained in:
Timofey Boyko 2023-09-25 17:04:55 +03:00
parent 8b0bca3a44
commit 61c920555b

View File

@ -272,6 +272,13 @@ server {
proxy_set_header X-Tenant 1;
}
location /api/scopes {
proxy_pass http://127.0.0.1:9090;
proxy_set_header X-API-Version 1;
proxy_set_header X-Tenant 1;
}
location /sso {
rewrite sso/(.*) /$1 break;
proxy_pass http://127.0.0.1:9834;