forked from LikeLion-Team2/internet-banking-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
34 lines (29 loc) · 1.03 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
``
server {
listen 80;
# 정적 파일을 서빙할 루트 디렉토리
root /usr/share/nginx/html;
# 기본 인덱스 파일 설정
index index.html;
# React Router를 사용한 SPA 설정
location / {
try_files $uri $uri/ /index.html;
}
# API 요청을 백엔드 서버로 프록시
location /api/ {
proxy_pass https://bank-back:8080/; # Docker 네트워크의 'bank-back' 서비스로 프록시
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;
# WebSocket 지원
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
# 에러 페이지 설정 (선택 사항)
error_page 404 /404.html;
location = /404.html {
internal;
}
}