12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
server {
|
||
listen 80;
|
||
server_name {{ xcontrol_certbot_domains }};
|
||
|
||
location ^~ /.well-known/acme-challenge/ {
|
||
root /var/www/certbot;
|
||
}
|
||
|
||
# 不 redirect!不要 https!
|
||
# certbot 需要纯 http 验证
|
||
}
|