refactor: nginx & Dockerfile

This commit is contained in:
OhSeongRak 2025-06-18 09:28:08 +09:00
parent d39180d276
commit d7d13d2dba
2 changed files with 34 additions and 60 deletions

View File

@ -41,12 +41,9 @@ ARG EXPORT_PORT=18080
# Copy built files from builder stage
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy nginx configuration
# Copy nginx configuration (이미 포트가 18080으로 설정됨)
COPY deployment/container/nginx.conf /etc/nginx/conf.d/default.conf
# Create nginx configuration with custom port
RUN sed -i "s/80/${EXPORT_PORT}/g" /etc/nginx/conf.d/default.conf
EXPOSE ${EXPORT_PORT}
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1,44 +1,28 @@
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Logging
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log warn;
# Basic settings
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server {
listen 18080;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
# Gzip compression
gzip on;
gzip_vary on;
gzip_min_length 10240;
gzip_proxied expired no-cache no-store private must-revalidate;
gzip_min_length 1024;
gzip_proxied any;
gzip_comp_level 6;
gzip_types
text/plain
text/css
text/xml
text/javascript
application/x-javascript
application/xml+rss
application/javascript
application/xml+rss
application/json;
server {
listen 18080;
server_name localhost;
# Handle client routing (Vue Router)
location / {
try_files $uri $uri/ /index.html;
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN" always;
@ -47,17 +31,11 @@ http {
add_header Referrer-Policy "no-referrer-when-downgrade" always;
add_header Content-Security-Policy "default-src 'self' http: https: data: blob: 'unsafe-inline'" always;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}
# Health check endpoint
location /health {
@ -65,5 +43,4 @@ http {
return 200 "healthy\n";
add_header Content-Type text/plain;
}
}
}