From 69e6fced48f5ed4055e4ca27449486753f4fa1ab Mon Sep 17 00:00:00 2001 From: lendry Date: Mon, 29 Jun 2026 20:37:58 +0300 Subject: [PATCH] fix and update --- apps/frontend/next.config.ts | 4 ---- install.sh | 11 ++--------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/apps/frontend/next.config.ts b/apps/frontend/next.config.ts index a79f3d6..3264bac 100644 --- a/apps/frontend/next.config.ts +++ b/apps/frontend/next.config.ts @@ -24,10 +24,6 @@ const nextConfig: NextConfig = { source: '/idp-api/:path*', destination: `${internalApiUrl}/:path*` }, - { - source: '/auth/:path*', - destination: `${internalApiUrl}/auth/:path*` - }, { source: '/oauth/:path*', destination: `${internalApiUrl}/oauth/:path*` diff --git a/install.sh b/install.sh index 4d6abd0..cfa4c71 100644 --- a/install.sh +++ b/install.sh @@ -10,7 +10,7 @@ set -euo pipefail -SCRIPT_VERSION="2.3.7" +SCRIPT_VERSION="2.3.8" ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "$ROOT_DIR" @@ -2095,10 +2095,9 @@ EOF } build_nginx_idp_api_proxy_block() { - local proxy_ws proxy_idp proxy_auth proxy_oauth proxy_wk proxy_fedcm + local proxy_ws proxy_idp proxy_oauth proxy_wk proxy_fedcm proxy_ws="$(render_proxy_rewrite ws /ws)" proxy_idp="$(render_proxy_idp_api)" - proxy_auth="$(render_proxy_root api)" proxy_oauth="$(render_proxy_root api)" proxy_wk="$(render_proxy_root api)" proxy_fedcm="$(render_proxy_root api)" @@ -2121,12 +2120,6 @@ ${proxy_idp} ${nginx_proxy_headers} } - location /auth/ { -${proxy_auth} - proxy_http_version 1.1; -${nginx_proxy_headers} - } - location /oauth/ { ${proxy_oauth} proxy_http_version 1.1;