Product-Manager/z3/product-manager-frontend/docker/default.conf.template

14 lines
285 B
Plaintext
Raw Normal View History

2022-05-22 12:03:07 +00:00
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
location /api/ {
# The following statement will proxy traffic to the upstream named Backend
proxy_pass ${api_host};
}
}