switched to fully self contained docker

This commit is contained in:
2026-07-26 14:01:20 -05:00
parent 0ed0fb5817
commit 5d2f90ce24
34 changed files with 688 additions and 672 deletions
@@ -0,0 +1,13 @@
server {
listen 80;
server_name ${BROKER_DOMAIN} ${GITEA_DOMAIN};
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 503 "TLS setup is in progress.\n";
add_header Content-Type text/plain;
}
}