ipam/default.conf

23 строки
484 B
Plaintext

# This is a default site configuration which will simply return 404, preventing
# chance access to any other virtualhost.
server {
listen 80 default_server;
listen [::]:80 default_server;
# Frontend
location / {
proxy_pass http://ipam-ui;
}
# Backend
location /api {
proxy_pass http://ipam-engine;
}
# You may need this to prevent return 404 recursion.
location = /404.html {
internal;
}
}