From fea22e3e45b4949e1ea8b1c03fd17cd3b60dc27f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 8 Feb 2021 14:06:31 +0100 Subject: [PATCH] copr-be: use the new SSL certificate --- roles/copr/backend/templates/lighttpd/lighttpd.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/copr/backend/templates/lighttpd/lighttpd.conf b/roles/copr/backend/templates/lighttpd/lighttpd.conf index 243b087e5c..f631849c48 100644 --- a/roles/copr/backend/templates/lighttpd/lighttpd.conf +++ b/roles/copr/backend/templates/lighttpd/lighttpd.conf @@ -481,8 +481,8 @@ server.upload-dirs = ( "/var/tmp" ) # production still uses normal configuration $SERVER["socket"] == "{{ https_bind }}" { ssl.engine = "enable" - ssl.pemfile = "/etc/lighttpd/copr.fedorainfracloud.org.pem" - ssl.ca-file = "/etc/lighttpd/copr.fedorainfracloud.org.intermediate.crt" + ssl.pemfile = "/etc/lighttpd/copr-be.cloud.fedoraproject.org.pem" + ssl.ca-file = "/etc/lighttpd/copr-be.cloud.fedoraproject.org.intermediate.cert" ssl.disable-client-renegotiation = "enable" ssl.use-sslv2 = "disable" ssl.use-sslv3 = "disable"