Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: feeds.yaml: fix HIBP nginx config #2126

Merged
merged 1 commit into from
Nov 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions intelmq/etc/feeds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down