fix: change Traditional Chinese to Simplified Chinese

This commit is contained in:
AnsonCar 2024-11-23 20:32:38 +08:00
parent 24f348dd69
commit d063152d36
2 changed files with 10 additions and 10 deletions

View File

@ -71,12 +71,12 @@ pnpm build
``` ```
在生產環境也可以使用 docker-compose 部署 **nova-admin** 在生产环境也可以使用 docker-compose 部署 **nova-admin**
```bash ```bash
# Build product # Build product
docker compose -f docker-compose.product.yml up --build -d docker compose -f docker-compose.product.yml up --build -d
``` ```
> 關於 nginx.conf 只供參考,你可以根據自己的需求進行調整。 > 关于 nginx.conf 只供参考,你可以根据自己的需求进行调整。
## 相关项目 ## 相关项目

View File

@ -2,7 +2,7 @@ server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
# 啟用 gzip 壓縮 # 启用 gzip 压缩
gzip on; gzip on;
gzip_vary on; gzip_vary on;
gzip_min_length 10240; gzip_min_length 10240;
@ -10,10 +10,10 @@ server {
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/javascript; gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml application/javascript;
gzip_disable "MSIE [1-6]\."; gzip_disable "MSIE [1-6]\.";
# MIME types # MIME types
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
# 基本安全 # 基本安全
add_header X-Frame-Options "SAMEORIGIN"; add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block"; add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff"; add_header X-Content-Type-Options "nosniff";
@ -33,31 +33,31 @@ server {
index index.html; index index.html;
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
# 定快取控制 # 定快取控制
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ { location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 30d; expires 30d;
add_header Cache-Control "public, no-transform"; add_header Cache-Control "public, no-transform";
} }
# 動態內容不快取 # 动态内容不快取
location = /index.html { location = /index.html {
add_header Cache-Control "no-store, no-cache, must-revalidate"; add_header Cache-Control "no-store, no-cache, must-revalidate";
add_header Pragma "no-cache"; add_header Pragma "no-cache";
expires -1; expires -1;
} }
# 錯誤處 # 错误处
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_intercept_errors on; proxy_intercept_errors on;
# 基本的代理 # 基本的代理
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
} }
# 禁止訪問隱藏文件 # 禁止访问隐藏文件
location ~ /\. { location ~ /\. {
deny all; deny all;
access_log off; access_log off;