diff --git a/templates/proxy-hosts.conf.j2 b/templates/proxy-hosts.conf.j2
index a05733ecf892f9c7865da5396a46ab2e55e2b23b..f987e82e81fe380e6ea81d58af20ce0faa18acdc 100644
--- a/templates/proxy-hosts.conf.j2
+++ b/templates/proxy-hosts.conf.j2
@@ -1,5 +1,5 @@
 server { # simple reverse-proxy
-    listen       443 ssl;
+    listen       80;
     server_name  {{ full_hostname }};
     root /var/www/html;
 
@@ -7,11 +7,6 @@ server { # simple reverse-proxy
 
     error_page 400 401 402 403 404 500 501 502 /index.html;
 
-    ssl_certificate     /etc/letsencrypt/live/{{ full_hostname }}/fullchain.pem;
-    ssl_certificate_key /etc/letsencrypt/live/{{ full_hostname }}/privkey.pem;
-    ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
-    ssl_ciphers         HIGH:!aNULL:!MD5;
-
     {% set cnt = 253 %}
     {% for i in range(cnt) %}
     location /{{ i + 1 }} {