mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 06:46:09 +08:00
19 lines
253 B
Plaintext
19 lines
253 B
Plaintext
upstream api {
|
|
server localhost:5600;
|
|
}
|
|
|
|
server {
|
|
listen 5700;
|
|
root /jd/dist;
|
|
ssl_session_timeout 5m;
|
|
|
|
location /api {
|
|
proxy_pass http://api;
|
|
}
|
|
|
|
location / {
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|