mirror of
https://github.com/certat/intelmq-docker.git
synced 2026-01-20 15:21:26 +01:00
21 lines
299 B
Plaintext
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/;
|
|
}
|
|
}
|