ConsulManager/vue-consul/http-ops.conf

11 lines
178 B
Plaintext
Raw Normal View History

2022-01-28 04:10:09 +00:00
server {
listen 1026;
location /api/ {
proxy_pass http://flask-consul:2026;
}
location / {
2022-12-11 15:24:15 +00:00
gzip_static on;
2022-01-28 04:10:09 +00:00
root /www/dist;
}
}