Skip to content

Commit 74c5a64

Browse files
committed
DOC: feeds.yaml: fix HIBP nginx config
the HIBP Enterprise feed snippet's nginx example configuration was missing three additional whitespaces of indentation to be rendered as code
1 parent 7ebb8e1 commit 74c5a64

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

intelmq/etc/feeds.yaml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1883,23 +1883,23 @@ providers:
18831883
A minimal nginx configuration could look like:
18841884
.. code-block::
18851885
1886-
server {
1887-
listen 443 ssl http2;
1888-
server_name [your host name];
1889-
client_max_body_size 50M;
1890-
1891-
ssl_certificate [path to your key];
1892-
ssl_certificate_key [path to your certificate];
1893-
1894-
location /[your private url] {
1895-
if ($http_authorization != '[your private password]') {
1896-
return 403;
1897-
}
1898-
proxy_pass http://localhost:5001/intelmq/push;
1899-
proxy_read_timeout 30;
1900-
proxy_connect_timeout 30;
1901-
}
1902-
}
1886+
server {
1887+
listen 443 ssl http2;
1888+
server_name [your host name];
1889+
client_max_body_size 50M;
1890+
1891+
ssl_certificate [path to your key];
1892+
ssl_certificate_key [path to your certificate];
1893+
1894+
location /[your private url] {
1895+
if ($http_authorization != '[your private password]') {
1896+
return 403;
1897+
}
1898+
proxy_pass http://localhost:5001/intelmq/push;
1899+
proxy_read_timeout 30;
1900+
proxy_connect_timeout 30;
1901+
}
1902+
}
19031903
bots:
19041904
collector:
19051905
module: intelmq.bots.collectors.api.collector_api

0 commit comments

Comments
 (0)