diff --git a/CHANGELOG.md b/CHANGELOG.md index b45fb2fb..23a66071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file. ### Changed +- Modify run_as parameter value - v4.14.3 ([#2157](https://github.com/wazuh/wazuh-docker/pull/2157)) - Adapt Wazuh Agent Dockerfile for multi-architecture support ([#2149](https://github.com/wazuh/wazuh-docker/pull/2149)) - Agent group parameter added ([#2127](https://github.com/wazuh/wazuh-docker/pull/2127)) - Adapt to multi architecture build ([#2120](https://github.com/wazuh/wazuh-docker/pull/2120)) diff --git a/build-docker-images/wazuh-dashboard/config/wazuh_app_config.sh b/build-docker-images/wazuh-dashboard/config/wazuh_app_config.sh index 76ecdc7f..674ae9fc 100644 --- a/build-docker-images/wazuh-dashboard/config/wazuh_app_config.sh +++ b/build-docker-images/wazuh-dashboard/config/wazuh_app_config.sh @@ -5,7 +5,7 @@ wazuh_url="${WAZUH_API_URL:-https://wazuh}" wazuh_port="${API_PORT:-55000}" api_username="${API_USERNAME:-wazuh-wui}" api_password="${API_PASSWORD:-wazuh-wui}" -api_run_as="${RUN_AS:-false}" +api_run_as="${RUN_AS:-true}" dashboard_config_file="/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml" diff --git a/multi-node/config/wazuh_dashboard/wazuh.yml b/multi-node/config/wazuh_dashboard/wazuh.yml index 59a44de1..acb0b1a7 100644 --- a/multi-node/config/wazuh_dashboard/wazuh.yml +++ b/multi-node/config/wazuh_dashboard/wazuh.yml @@ -4,4 +4,4 @@ hosts: port: 55000 username: wazuh-wui password: "MyS3cr37P450r.*-" - run_as: false + run_as: true diff --git a/single-node/config/wazuh_dashboard/wazuh.yml b/single-node/config/wazuh_dashboard/wazuh.yml index ef429153..5ff4e2be 100644 --- a/single-node/config/wazuh_dashboard/wazuh.yml +++ b/single-node/config/wazuh_dashboard/wazuh.yml @@ -4,4 +4,4 @@ hosts: port: 55000 username: wazuh-wui password: "MyS3cr37P450r.*-" - run_as: false + run_as: true