qinglong/docker/front.conf
2021-03-18 10:02:13 +08:00

19 lines
256 B
Plaintext

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