From c2a1f5265b553ea0ecfe2d98727379c9e4d7505d Mon Sep 17 00:00:00 2001 From: Linden Crandall Date: Sat, 8 Feb 2025 03:34:59 +0900 Subject: [PATCH] added initial nginx conf template --- ...utomatisch_letsencrypt_nginx_template.conf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 https/nginx/automatisch_letsencrypt_nginx_template.conf diff --git a/https/nginx/automatisch_letsencrypt_nginx_template.conf b/https/nginx/automatisch_letsencrypt_nginx_template.conf new file mode 100644 index 0000000..d49e548 --- /dev/null +++ b/https/nginx/automatisch_letsencrypt_nginx_template.conf @@ -0,0 +1,19 @@ +events { + worker_connections 1024; +} + +http { + + server { + listen 7757; + server_name automatisch.lasthourhosting.org; + + location / { + proxy_pass http://main:7757; + } + + location ~ /.well-known/acme-challenge/ { + root /var/www/certbot; + } + } +}