From 528954f3cb8fb5ddccd172f8f88b7bf7d7ab61c4 Mon Sep 17 00:00:00 2001 From: Radu Carpa Date: Thu, 30 Nov 2023 13:54:46 +0100 Subject: [PATCH] servers: fix ping endpoint when ssl enabled otherwise it complains about the require_x509_auth variable not being set. --- server/rucio.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/rucio.conf.j2 b/server/rucio.conf.j2 index e051a1b..98f98cb 100644 --- a/server/rucio.conf.j2 +++ b/server/rucio.conf.j2 @@ -124,7 +124,7 @@ Listen {{ RUCIO_METRICS_PORT }} {% if RUCIO_HEALTH_CHECK_PORT is defined %} Listen {{ RUCIO_HEALTH_CHECK_PORT }} -{{ common_virtual_host_config(port=RUCIO_HEALTH_CHECK_PORT, enable_ssl=RUCIO_ENABLE_SSL|default('False') == 'True') }} +{{ common_virtual_host_config(port=RUCIO_HEALTH_CHECK_PORT, enable_ssl=RUCIO_ENABLE_SSL|default('False') == 'True', require_x509_auth=false) }} WSGIScriptAlias /ping {{ RUCIO_PYTHON_PATH }}/web/rest/ping.py process-group=rucio application-group=rucio