mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 02:42:54 +08:00
29 lines
330 B
Plaintext
29 lines
330 B
Plaintext
example.com {
|
|
bind tcp6/[::]
|
|
}
|
|
----------
|
|
{
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
"tcp6/[::]:443"
|
|
],
|
|
"routes": [
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |