From acb6cefbcc93ef7e1c3874d2bb6f9254fa75522f Mon Sep 17 00:00:00 2001 From: lee-hyeon-cheol Date: Tue, 22 Sep 2026 20:36:19 +0900 Subject: [PATCH] =?UTF-8?q?fix(tauri):=20=EB=A7=A5=20=EB=B2=88=EB=93=A4?= =?UTF-8?q?=EC=97=90=20http=20=ED=97=88=EC=9A=A9(ATS)=20=E2=80=94=20?= =?UTF-8?q?=EC=84=9C=EB=B2=84=EA=B0=80=20http=20=EB=9D=BC=20=EC=95=B1?= =?UTF-8?q?=EC=9D=B4=20=EC=9A=94=EC=B2=AD=EC=9D=84=20=EB=AA=BB=20=EB=B3=B4?= =?UTF-8?q?=EB=82=B4=EB=8D=98=20=EA=B2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS 는 앱 안 비암호화 요청을 기본 차단. src-tauri/Info.plist 로 NSAllowsArbitraryLoads 를 번들에 합침. Windows 는 무관. Co-Authored-By: Claude Fable 5.1 --- 4_rust_tauri/src-tauri/Info.plist | 13 +++++++++++++ z-my-docs/work-log/2026-09/2026-09-22.md | 1 + 2 files changed, 14 insertions(+) create mode 100644 4_rust_tauri/src-tauri/Info.plist diff --git a/4_rust_tauri/src-tauri/Info.plist b/4_rust_tauri/src-tauri/Info.plist new file mode 100644 index 0000000..e0f5b38 --- /dev/null +++ b/4_rust_tauri/src-tauri/Info.plist @@ -0,0 +1,13 @@ + + + + + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + + diff --git a/z-my-docs/work-log/2026-09/2026-09-22.md b/z-my-docs/work-log/2026-09/2026-09-22.md index 5dffc31..ceda651 100644 --- a/z-my-docs/work-log/2026-09/2026-09-22.md +++ b/z-my-docs/work-log/2026-09/2026-09-22.md @@ -22,3 +22,4 @@ | 18:19 | 우리 서버(20.200.170.37)에 Phoenix(도커)·CodeAssist 백엔드(도커) 띄우고 ABAP_OPENCODE 갱신 — CodeAssist 채팅→Phoenix 확인, 워처→Phoenix 연결 확인. 바깥 8080/6006 은 NSG 미개방 | | 18:34 | 오늘 정리: docs/orders/20260922.md(한 것·다음 할 일·접속 메모) 작성, 양쪽 git 전부 push | | 20:32 | 우리 서버(20.200.170.37:8080) 앱 빌드 준비 — 8080·6006 바깥에서 200 확인, .env.production 에 서버 API 주소, 빌드 결과에 박히는 것·CORS(tauri origin) 허용 확인. 서버 테스트 계정 t@x.com 삭제(세션 2개 포함). 버전 0.1.4 로 올려 맥 빌드 | +| 20:36 | 맥 빌드 앱이 서버에 요청을 못 보내던 원인 — macOS ATS 가 http 차단. src-tauri/Info.plist 에 NSAllowsArbitraryLoads 넣어 재빌드, 앱 요청이 서버 로그에 찍히는 것 확인(0.1.4 dmg) |