Ахметзянов Рустам Рамилевич 889bf19319 commit 25-05-2026_13:32
2026-05-25 13:32:29 +04:00

16 lines
365 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
# Дефолтная локация Certbot'а работает "из коробки"
location /.well-known/acme-challenge/ {
root /var/www/html;
}
# Всё остальное — молчок
location / {
return 444;
}
}