Product-Manager/z3/product-manager-frontend/docker/default.conf.template
2022-05-22 17:33:07 +05:30

14 lines
285 B
Plaintext

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};
}
}