Files
a301_client/nginx.conf
tolelom ca08f7a2e6
All checks were successful
Client CI/CD / deploy (push) Successful in 11s
CI/CD: Gitea Actions 배포 파이프라인 및 Docker 설정 추가
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 11:32:42 +09:00

14 lines
327 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# SPA fallback (react-router 사용 시 필요)
location / {
try_files $uri $uri/ /index.html;
}
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
gzip_min_length 1024;
}