Files
HomeServerServices/proxy/nginx/init/default.conf
2026-01-14 10:40:20 -06:00

14 lines
202 B
Plaintext

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