From 094fce104eb4e53ee28a1ec141d1a701e52f502e Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Mar 2026 23:03:13 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20Nginx=20=EA=B2=BD=EB=A1=9C?= =?UTF-8?q?=EB=A5=BC=20.shop=EC=97=90=EC=84=9C=20.site=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/nginx/conf.d/default.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nginx/conf.d/default.conf b/docker/nginx/conf.d/default.conf index 73a52ec2..3cb2e307 100644 --- a/docker/nginx/conf.d/default.conf +++ b/docker/nginx/conf.d/default.conf @@ -18,7 +18,7 @@ real_ip_header CF-Connecting-IP; server { listen 80; - server_name api.techfork.shop techfork.shop; + server_name api.techfork.site; client_max_body_size 10M; @@ -46,7 +46,7 @@ server { server { listen 80; - server_name dev.techfork.shop; + server_name dev.techfork.site; client_max_body_size 10M; From 4e1552620682a49b4ba28d08ab210a60ee70252b Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Mar 2026 23:03:42 +0900 Subject: [PATCH 2/2] =?UTF-8?q?improve:=20CORS=20=ED=97=88=EC=9A=A9=20?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=EB=A5=BC=20=ED=94=84=EB=A1=A0=ED=8A=B8=20?= =?UTF-8?q?=EB=8F=84=EB=A9=94=EC=9D=B8=EC=97=90=20=EB=A7=9E=EA=B2=8C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/techfork/global/security/config/SecurityConfig.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/com/techfork/global/security/config/SecurityConfig.java b/src/main/java/com/techfork/global/security/config/SecurityConfig.java index 03621c0a..2221ece8 100644 --- a/src/main/java/com/techfork/global/security/config/SecurityConfig.java +++ b/src/main/java/com/techfork/global/security/config/SecurityConfig.java @@ -82,10 +82,7 @@ public CorsConfigurationSource corsConfigurationSource() { configuration.setAllowedOrigins(List.of( "http://localhost:5173", "https://localhost", - "https://techfork-fe.vercel.app", - "https://techfork.shop", - "https://api.techfork.shop", - "https://dev.techfork.shop", + "https://techfork.site", "https://appleid.apple.com" // Apple Sign In form_post )); configuration.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));