Files
TA-Deployment-Broker/deploy/nginx/templates/bootstrap.conf.template
T
2026-07-26 14:01:20 -05:00

14 lines
276 B
Plaintext

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