Participation API 프록시 라우트 URL 구조 수정

- 5개 Participation API 프록시 라우트에 /api/v1/participations 베이스 경로 추가
- 백엔드 Swagger 경로 구조에 맞춰 URL 수정
  - GET /api/v1/events/{eventId}/participants
  - GET /api/v1/events/{eventId}/winners
  - POST /api/v1/events/{eventId}/draw-winners
  - GET /api/v1/events/{eventId}/participants/{participantId}
  - POST /api/v1/events/{eventId}/participate
- nginx.conf 버퍼 설정 최적화 (proxy_buffers 8 64k)
- next.config.js output 'standalone' 설정 유지
This commit is contained in:
cherry2250
2025-10-30 17:16:16 +09:00
parent e50cc86ece
commit e3f1e2e3c7
8 changed files with 288 additions and 21 deletions
+9
View File
@@ -23,6 +23,10 @@ http {
keepalive_timeout 65;
types_hash_max_size 2048;
# 헤더 및 쿠키 버퍼 크기 증가
large_client_header_buffers 4 32k;
client_header_buffer_size 32k;
gzip on;
gzip_vary on;
gzip_proxied any;
@@ -59,6 +63,11 @@ http {
proxy_connect_timeout 180s;
proxy_send_timeout 180s;
proxy_read_timeout 180s;
# 프록시 버퍼 크기 증가
proxy_buffer_size 32k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
}
# Static files