From 4eb05ccc9ce494ffabd11a04288cc9db2ef07ddc Mon Sep 17 00:00:00 2001 From: Hiroki Terashima Date: Wed, 17 Dec 2025 14:28:47 -0800 Subject: [PATCH] Add /oauth2 endpoint to be handled by wise-api endpoint --- nginx/conf.d/wise.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/conf.d/wise.conf b/nginx/conf.d/wise.conf index b2a8b14..cf9d9de 100644 --- a/nginx/conf.d/wise.conf +++ b/nginx/conf.d/wise.conf @@ -28,7 +28,7 @@ proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } - location ~ (/api|/run-survey) { + location ~ (/api|/run-survey|/oauth2) { proxy_pass $w_api; proxy_set_header Host $host:$server_port; proxy_set_header X-Forwarded-Host $server_name;