added initial nginx conf template #4

Merged
Ghost merged 1 commits from dev into main 2025-02-07 18:36:06 +00:00

View File

@ -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;
}
}
}