diff --git a/intelmq/etc/feeds.yaml b/intelmq/etc/feeds.yaml index cfba31f21..4f0eb7f51 100644 --- a/intelmq/etc/feeds.yaml +++ b/intelmq/etc/feeds.yaml @@ -1883,23 +1883,23 @@ providers: A minimal nginx configuration could look like: .. code-block:: - server { - listen 443 ssl http2; - server_name [your host name]; - client_max_body_size 50M; - - ssl_certificate [path to your key]; - ssl_certificate_key [path to your certificate]; - - location /[your private url] { - if ($http_authorization != '[your private password]') { - return 403; - } - proxy_pass http://localhost:5001/intelmq/push; - proxy_read_timeout 30; - proxy_connect_timeout 30; - } - } + server { + listen 443 ssl http2; + server_name [your host name]; + client_max_body_size 50M; + + ssl_certificate [path to your key]; + ssl_certificate_key [path to your certificate]; + + location /[your private url] { + if ($http_authorization != '[your private password]') { + return 403; + } + proxy_pass http://localhost:5001/intelmq/push; + proxy_read_timeout 30; + proxy_connect_timeout 30; + } + } bots: collector: module: intelmq.bots.collectors.api.collector_api