From 24f348dd6906153f32b2e20d0fa745959924198a Mon Sep 17 00:00:00 2001 From: AnsonCar Date: Sat, 23 Nov 2024 20:21:08 +0800 Subject: [PATCH] feat: add nginx.conf --- nginx.conf | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..6ca9fb2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,66 @@ +server { + listen 80; + listen [::]:80; + + # 啟用 gzip 壓縮 + gzip on; + gzip_vary on; + gzip_min_length 10240; + gzip_proxied expired no-cache no-store private auth; + gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/javascript; + gzip_disable "MSIE [1-6]\."; + + # 設定 MIME types + include /etc/nginx/mime.types; + + # 基本安全設定 + add_header X-Frame-Options "SAMEORIGIN"; + add_header X-XSS-Protection "1; mode=block"; + add_header X-Content-Type-Options "nosniff"; + + # 增加伺服器效能的配置 + client_max_body_size 100M; + client_body_buffer_size 128k; + proxy_connect_timeout 90; + proxy_send_timeout 90; + proxy_read_timeout 90; + proxy_buffer_size 4k; + proxy_buffers 4 32k; + proxy_busy_buffers_size 64k; + + location / { + root /www; + index index.html; + try_files $uri $uri/ /index.html; + + # 設定快取控制 + location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ { + expires 30d; + add_header Cache-Control "public, no-transform"; + } + + # 動態內容不快取 + location = /index.html { + add_header Cache-Control "no-store, no-cache, must-revalidate"; + add_header Pragma "no-cache"; + expires -1; + } + + # 錯誤處理 + proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; + proxy_intercept_errors on; + + # 基本的代理設定 + 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; + } + + # 禁止訪問隱藏文件 + location ~ /\. { + deny all; + access_log off; + log_not_found off; + } +}