nginx常用配置
- May 5, 2020
- aaaaaAndy
1. 常用配置
1. 标准root页面配置
1
2
3
4
5
6
7
8
9
10
11
12
server {
listen 80;
server_name 127.0.0.1;
client_max_body_size 100m;
location / {
root /app/xxx; # 项目所在目录
index index.html index.htm;
try_files $uri $uri/ /index.html; # vue单页应用需要路由始终指
Continue reading