32 lines
984 B
Plaintext
32 lines
984 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
|
|
# Load configuration files for the default server block.
|
|
include /etc/nginx/default.d/*.conf;
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|webp|svg|ico|ttf|otf|woff|woff2|mp4)$ {
|
|
# 缓存30天
|
|
add_header Cache-Control "public, max-age=2592000, immutable";
|
|
|
|
# 启用 Gzip 压缩
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
gzip_vary on;
|
|
}
|
|
location / {
|
|
# 此处的 @router 实际上是引用下面的转发,否则在 Vue 路由刷新时可能会抛出 404
|
|
try_files $uri $uri/ @router;
|
|
# 请求指向的首页
|
|
index index.html;
|
|
}
|
|
error_page 404 /404.html;
|
|
location = /404.html {
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
}
|
|
}
|