updated nginx container, .conf file, added certbot container #2

Merged
Ghost merged 5 commits from dev into main 2025-02-07 00:15:26 +00:00
Showing only changes of commit 8cdacdb85d - Show all commits

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