mirror of
https://github.com/StepanovPlaton/HomeServerServices.git
synced 2026-04-03 20:30:44 +04:00
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
server {
|
|
listen 80;
|
|
server_name domain.dynnamn.ru domain2.dynnamn.ru;
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
}
|
|
|
|
location / {
|
|
return 200 "Hello HTTP!";
|
|
}
|
|
}
|