16 lines
397 B
Nginx Configuration File
16 lines
397 B
Nginx Configuration File
server {
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
listen 80;
|
|
server_name _;
|
|
|
|
# 设置根目录
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location /blog-press/ {
|
|
# VitePress SPA 路由支持
|
|
try_files $uri $uri/ /blog-press/index.html;
|
|
}
|
|
} |