mirror of
https://github.com/StepanovPlaton/HomeServerServices.git
synced 2026-04-03 20:30:44 +04:00
14 lines
202 B
Plaintext
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!";
|
|
}
|
|
}
|