feat: 모바일 신고 시스템 구축 + tkqc 연동 + tkuser 이슈유형 관리

- tkreport 모바일 신고 페이지 (5단계 위자드: 유형→위치→프로젝트→항목→사진)
- 프로젝트 DB 연동 (아코디언 UI: TBM등록/활성프로젝트/모름)
- 클라이언트 이미지 리사이징 (1280px, JPEG 80%)
- nginx client_max_body_size 50m, /api/projects/ 프록시 추가
- 부적합 신고 → tkqc 자동 연동 (사진 base64 전달, SSO 토큰 유지)
- work_issue_reports에 project_id 컬럼 추가
- imageUploadService 경로 수정 (public/uploads → uploads, Docker 볼륨 일치)
- tkuser 이슈유형 탭, 휴가관리, nginx 프록시 업데이트
- tkqc 대시보드/수신함/관리함/폐기함 UI 업데이트
- system1 랜딩페이지 업데이트

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-02-12 15:52:45 +09:00
parent 733bb0cb35
commit 234a6252c0
18 changed files with 1308 additions and 1208 deletions

View File

@@ -5,6 +5,9 @@ server {
root /usr/share/nginx/html;
index pages/safety/issue-report.html;
# 사진 업로드를 위한 body 크기 제한 (base64 인코딩 시 원본 대비 ~33% 증가)
client_max_body_size 50m;
# 정적 파일 캐시
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1h;
@@ -17,7 +20,7 @@ server {
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
# System 1 API 프록시 (공장/작업장, TBM, 출입관리)
# System 1 API 프록시 (공장/작업장, TBM, 출입관리, 프로젝트)
location /api/workplaces/ {
proxy_pass http://system1-api:3005;
proxy_set_header Host $host;
@@ -26,6 +29,14 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /api/projects/ {
proxy_pass http://system1-api:3005;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /api/tbm/ {
proxy_pass http://system1-api:3005;
proxy_set_header Host $host;
@@ -52,7 +63,6 @@ server {
}
# System 2 API uploads (신고 사진 등)
# ^~ + 더 긴 prefix → /api/ 보다 우선 매칭
location ^~ /api/uploads/ {
proxy_pass http://system2-api:3005/uploads/;
proxy_set_header Host $host;
@@ -62,7 +72,6 @@ server {
}
# System 1 uploads 프록시 (작업장 레이아웃 이미지 등)
# ^~ : 정적파일 캐시 regex보다 우선 매칭
location ^~ /uploads/ {
proxy_pass http://system1-api:3005/uploads/;
proxy_set_header Host $host;