14 lines
276 B
Plaintext
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;
|
|
}
|
|
}
|