Add init proxy conf

This commit is contained in:
2026-01-14 10:40:20 -06:00
parent 9ca1667a31
commit 50c89f9661
2 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 80;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
charset utf-8;
default_type text/plain;
return 200 "Hello world!";
}
}