Files
intelmq-docker/.docker/nginx/config/app.conf
Sebastian Waldbauer 0834eb239d FIX: Add html files to nginx
Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at>
2021-04-15 12:17:40 +02:00

21 lines
299 B
Plaintext

upstream intelmq_api {
server intelmq:8080;
}
server {
listen 80 default_server;
server_name localhost;
root /www;
location / {
index index.html;
try_files $uri /index.html =404;
}
location /intelmq/ {
proxy_pass http://intelmq_api/;
}
}