File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments