From 1ea893cbb18dcc2464e43879de187f9c904ad791 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Wed, 27 Mar 2024 16:25:20 +1100 Subject: [PATCH] Port changes from 5.x (#255) --- images/php/settings.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/images/php/settings.php b/images/php/settings.php index 9f4be90f..a36ba07a 100755 --- a/images/php/settings.php +++ b/images/php/settings.php @@ -346,6 +346,9 @@ $config['elasticsearch_connector.cluster.elasticsearch_bay']['options']['use_authentication'] = 0; } +// Override data_pipelines url. +$config['data_pipelines.dataset_destination.sdp_elasticsearch']['destinationSettings']['url'] = (getenv('SEARCH_HASH') && getenv('SEARCH_URL')) ? sprintf('https://%s.%s', getenv('SEARCH_HASH'), getenv('SEARCH_URL')) : "http://elasticsearch:9200"; + // Configure tide_logs. if (getenv('TIDE_LOGS_UDPLOG_HOST')) { $config['tide_logs.settings']['host'] = getenv('TIDE_LOGS_UDPLOG_HOST');