11 lines
305 B
Plaintext
11 lines
305 B
Plaintext
server { ## 前端项目
|
|
listen 80;
|
|
## server_name admin.iocoder.cn; ## 重要!!!修改成你的前端域名
|
|
|
|
location / { ## 前端项目
|
|
root /usr/share/nginx/html/yudao-ui-admin;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
}a |