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

Add ssl agent ca configuration entry #6083

Merged
merged 3 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to the Wazuh app project will be documented in this file.

- Support for Wazuh 4.8.0
- Added remember server address check [#5791](https:/wazuh/wazuh-dashboard-plugins/pull/5791)
- Added the ssl_agent_ca configuration to the SSL Settings form [#6083](https:/wazuh/wazuh-dashboard-plugins/pull/6083)

## Wazuh v4.7.1 - OpenSearch Dashboards 2.8.0 - Revision 00

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ const keyRequestSettings = [
];

const sslSettings = [
{ field: 'ssl_verify_host', label: 'Verify agents using a CA certificate' },
{ field: 'ssl_verify_host', label: 'Verify host when a CA certificate is specified' },
{ field: 'ssl_agent_ca', label: 'Path to the CA certificate used to verify clients' },
{
field: 'ssl_auto_negotiate',
label: 'Auto-select the SSL negotiation method',
Expand Down
Loading