Files
bio_backend/nginx-1.28.0/conf/nginx.conf

49 lines
1.3 KiB
Nginx Configuration File
Raw Normal View History

2025-08-12 08:46:55 +09:00
events {
worker_connections 1024;
}
http {
include mime.types;
2025-08-13 15:38:09 +09:00
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
# (선택) 로그 위치
access_log logs/access.log;
error_log logs/error.log warn;
2025-08-13 15:38:09 +09:00
# 웹소켓용
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
2025-08-12 08:46:55 +09:00
server {
listen 80;
2025-08-13 15:38:09 +09:00
server_name localhost;
2025-08-12 08:46:55 +09:00
2025-08-13 15:38:09 +09:00
# Nuxt(개발서버 3000)
2025-08-12 08:46:55 +09:00
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2025-08-13 15:38:09 +09:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
2025-08-12 08:46:55 +09:00
}
2025-08-13 15:38:09 +09:00
# Spring Boot(8080) — /service 접두어 제거
location /service/ {
proxy_pass http://localhost:8080; # 끝에 슬래시 넣으면 /service가 제거됨
2025-08-12 08:46:55 +09:00
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
2025-08-13 15:38:09 +09:00
# (선택) 업로드 크게 받을 때
# client_max_body_size 50m;
2025-08-12 08:46:55 +09:00
}
}