From a2fe24955b3ba61f3a9fb3863a4437dad7f1c1c3 Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Sat, 11 May 2024 19:01:13 +0000 Subject: [PATCH] nginx_site: Use plain http for certbot --- roles/nginx_site/templates/site.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nginx_site/templates/site.conf.j2 b/roles/nginx_site/templates/site.conf.j2 index f3af053..fc70329 100644 --- a/roles/nginx_site/templates/site.conf.j2 +++ b/roles/nginx_site/templates/site.conf.j2 @@ -55,7 +55,7 @@ server { listen [::]:80; server_name {{ nginx_site_name }}; location /.well-known/acme-challenge/ { - proxy_pass https://certbot.home.foo.sh/.well-known/acme-challenge/; + proxy_pass http://certbot.home.foo.sh/.well-known/acme-challenge/; } location / { {% if nginx_site_redirect is defined %}