mirror of
https://github.com/certat/intelmq-docker.git
synced 2026-01-15 12:51:39 +01:00
Now we're using the api instead of the manager. This is future proof & will be updated constantly. Removed manager config & added api config Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> [NGINX] Added default webserver (nginx) Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated intelmq-full docker image Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Changed build process Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated utils Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Fixed entrypoint Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated docker-compose Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Misc Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at>
21 lines
303 B
Plaintext
21 lines
303 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/;
|
|
}
|
|
}
|