From 79630c166a678cac1036d76c3935a3b27f78af98 Mon Sep 17 00:00:00 2001 From: pro Date: Fri, 30 Jan 2026 14:36:10 +0900 Subject: [PATCH] =?UTF-8?q?docs:tenant-storage=20=EC=8B=AC=EB=B3=BC?= =?UTF-8?q?=EB=A6=AD=20=EB=A7=81=ED=81=AC=20=EC=88=98=EC=A0=95=20=EC=9D=B4?= =?UTF-8?q?=EB=A0=A5=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- 서버작업이력.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/서버작업이력.md b/서버작업이력.md index 5a711d96..ab43c722 100644 --- a/서버작업이력.md +++ b/서버작업이력.md @@ -218,6 +218,26 @@ ### 8. SalesRoleSeeder 실행 --- +### 9. tenant-storage 심볼릭 링크 수정 + +**문제**: 명함 이미지가 저장되었지만 브라우저에서 로드되지 않음 +- 기존 심볼릭 링크가 잘못된 경로를 가리킴: `/var/www/api/storage/app/tenants` (존재하지 않음) + +**작업 내용**: +```bash +cd /home/webservice/mng/public +rm tenant-storage +ln -s /home/webservice/shared-storage/tenants tenant-storage +``` + +**결과 확인**: +```bash +ls -la tenant-storage +# lrwxrwxrwx 1 pro develop 39 Jan 30 14:35 tenant-storage -> /home/webservice/shared-storage/tenants +``` + +--- + ## 참고: Docker vs 서버 경로 차이 | 항목 | Docker (로컬) | 서버 |