bill-react/default.conf.template

16 lines
279 B
Plaintext
Raw Permalink Normal View History

2022-09-06 01:05:20 +08:00
server {
2022-09-06 01:05:29 +08:00
gzip on;
2022-09-06 01:05:20 +08:00
listen ${NGINX_PORT};
2022-09-06 01:05:29 +08:00
server_name ${NGINX_HOST};
2022-09-06 01:05:20 +08:00
2022-09-06 01:05:29 +08:00
root /usr/share/nginx/html;
index index.html index.htm;
2022-09-06 01:05:20 +08:00
location / {
2022-09-06 01:05:29 +08:00
try_files $uri /index.html;
2022-09-06 01:05:20 +08:00
}
2022-09-06 01:05:29 +08:00
location /api/ {
2022-09-06 01:05:20 +08:00
proxy_pass ${NGINX_API_PROXY};
}
}