From 2bf3682e773a36796b734db0baf4ffceb9878d96 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 6 Jun 2020 11:43:46 +0200 Subject: [PATCH] copr-be-dev: python3 fix for new batcave: s/iteritems/items/ --- roles/copr/backend/templates/lighttpd/lighttpd_dev.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/copr/backend/templates/lighttpd/lighttpd_dev.conf b/roles/copr/backend/templates/lighttpd/lighttpd_dev.conf index ab355b0629..1c9c855f58 100644 --- a/roles/copr/backend/templates/lighttpd/lighttpd_dev.conf +++ b/roles/copr/backend/templates/lighttpd/lighttpd_dev.conf @@ -460,7 +460,7 @@ $HTTP["url"] =~ "^/.well-known/" { # Enable HTTPS $SERVER["socket"] == ":443" { ssl.engine = "enable" -{% for hostname, _ in letsencrypt.certificates.iteritems() %} +{% for hostname, _ in letsencrypt.certificates.items() %} ssl.ca-file = "/etc/letsencrypt/live/{{ hostname }}/chain.pem" ssl.pemfile = "/etc/letsencrypt/live/{{ hostname }}/combined.pem" {% endfor %}