qinglong/docker/front.conf
whyour 8906472ae0 基础命令重构
1. 移除命令中 bash 依赖
2. jd命令重命名为js
3. 修改默认初始目录
4. 移除冗余代码
2021-03-25 23:44:57 +08:00

19 lines
253 B
Plaintext

upstream api {
server localhost:5600;
}
server {
listen 5700;
root /ql/dist;
ssl_session_timeout 5m;
location /api {
proxy_pass http://api;
}
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}