1
0
mirror of https://github.com/ArcticFoxes-net/Signal-TLS-Proxy synced 2024-09-07 18:53:30 -04:00

Return 404 by default

This commit is contained in:
Jon Chambers 2022-09-22 18:35:46 -04:00 committed by Jon Chambers
parent 79b96cad6e
commit 7d03721445

View File

@ -12,6 +12,10 @@ http {
location /.well-known/acme-challenge/ {
alias /var/www/certbot/;
}
location / {
return 404;
}
}
}