Skip to content

Commit

Permalink
Introduce SSL Parameter Configuration (#24)
Browse files Browse the repository at this point in the history
* Introduce SSL Parameter Configuration

Implemented an SSL parameter configuration feature, allowing users to specify SSL settings in the pdnssoccli.yml configuration file. This enhancement enables the use of self-signed certificates without SSL verification failures. Users can configure the SSL parameter accordingly to accommodate various SSL certificate setups, ensuring seamless integration with different environments.

* Introduce SSL Parameter on Docker Configuration

* Fix typo in pdnssoccli.yml

---------

Co-authored-by: Christos Arvanitis <[email protected]>
  • Loading branch information
4quarks and arvchristos authored Mar 6, 2024
1 parent 02bc9ef commit 2f3d868
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions files/configuration/pdnssoccli/pdnssoccli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ logging_level: "INFO"
misp_servers:
- domain: "https://example-misp-instance.com"
api_key: "API_KEY"
verify_ssl: True
# misp.search() arguments
args:
enforce_warninglist: True
Expand Down
3 changes: 2 additions & 1 deletion files/docker/pdnssoccli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ logging_level: "INFO"
misp_servers:
- domain: "https://example-misp-instance.com"
api_key: "API_KEY"
verify_ssl: False
# misp.search() arguments
args:
enforce_warninglist: True
Expand Down Expand Up @@ -45,4 +46,4 @@ alerting:
template: ./alert_email_template.html
mappings:
- client_id: client_1
contact: [email protected]
contact: [email protected]

0 comments on commit 2f3d868

Please sign in to comment.