bill-react/default.conf.template

13 lines
271 B
Plaintext
Raw Normal View History

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