From 33cbe896c0c78e8a1a016a2555e2f43847877e0c Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Wed, 22 May 2024 14:27:26 +1000 Subject: [PATCH] [SDPSUP-7185] Update search endpoints to use http (#264) --- images/php/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/php/settings.php b/images/php/settings.php index a36ba07a..c95a5ff0 100755 --- a/images/php/settings.php +++ b/images/php/settings.php @@ -347,7 +347,7 @@ } // 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"; +$config['data_pipelines.dataset_destination.sdp_elasticsearch']['destinationSettings']['url'] = (getenv('SEARCH_HASH') && getenv('SEARCH_URL')) ? sprintf('http://%s.%s', getenv('SEARCH_HASH'), getenv('SEARCH_URL')) : "http://elasticsearch:9200"; // Configure tide_logs. if (getenv('TIDE_LOGS_UDPLOG_HOST')) {