caddy

caddy 自动证书

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
admin off
servers :443 {
protocols h1 h2 h3
}
order forward_proxy before file_server
}

:443, www.example.com {
tls abc@example.com
forward_proxy {
basic_auth username password
hide_ip
hide_via
probe_resistance www.digitalocean.com
}
file_server {
root /var/www/html
}
}

推荐文章