mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 03:42:07 +08:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /opt/dist;
|
|
try_files $uri $uri/ /index.html;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location /api {
|
|
proxy_pass http://logikm-backend:8080;
|
|
}
|
|
} |