mirror of
https://github.com/ktds-dg0501/kt-event-marketing-fe.git
synced 2026-06-13 09:39:09 +00:00
API 타임아웃을 3분으로 증가
- Next.js API Route fetch 타임아웃: 60초 → 180초 - Nginx 프록시 타임아웃: 60초 → 180초 - 이미지 생성 API의 504 Gateway Timeout 해결 - AbortController를 사용한 타임아웃 제어 추가
This commit is contained in:
@@ -55,10 +55,10 @@ http {
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# Timeouts
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 60s;
|
||||
proxy_read_timeout 60s;
|
||||
# Timeouts - 이미지 생성은 시간이 오래 걸리므로 3분으로 설정
|
||||
proxy_connect_timeout 180s;
|
||||
proxy_send_timeout 180s;
|
||||
proxy_read_timeout 180s;
|
||||
}
|
||||
|
||||
# Static files
|
||||
|
||||
Reference in New Issue
Block a user