mirror of
https://github.com/caddyserver/caddy.git
synced 2026-04-26 10:49:51 -04:00
Some checks failed
Tests / test (./cmd/caddy/caddy, ~1.26.0, ubuntu-latest, 0, 1.26, linux) (push) Failing after 1m37s
Tests / test (s390x on IBM Z) (push) Has been skipped
Tests / goreleaser-check (push) Has been skipped
Cross-Build / build (~1.26.0, 1.26, aix) (push) Successful in 1m53s
Cross-Build / build (~1.26.0, 1.26, darwin) (push) Successful in 1m37s
Cross-Build / build (~1.26.0, 1.26, dragonfly) (push) Successful in 1m42s
Cross-Build / build (~1.26.0, 1.26, freebsd) (push) Successful in 1m47s
Cross-Build / build (~1.26.0, 1.26, illumos) (push) Successful in 1m51s
Cross-Build / build (~1.26.0, 1.26, linux) (push) Successful in 2m12s
Cross-Build / build (~1.26.0, 1.26, netbsd) (push) Successful in 1m49s
Cross-Build / build (~1.26.0, 1.26, openbsd) (push) Successful in 1m39s
Cross-Build / build (~1.26.0, 1.26, solaris) (push) Successful in 1m39s
Cross-Build / build (~1.26.0, 1.26, windows) (push) Successful in 1m33s
Lint / lint (ubuntu-latest, linux) (push) Successful in 2m22s
Lint / govulncheck (push) Successful in 1m24s
Lint / dependency-review (push) Failing after 25s
OpenSSF Scorecard supply-chain security / Scorecard analysis (push) Failing after 37s
Tests / test (./cmd/caddy/caddy, ~1.26.0, macos-14, 0, 1.26, mac) (push) Has been cancelled
Tests / test (./cmd/caddy/caddy.exe, ~1.26.0, windows-latest, True, 1.26, windows) (push) Has been cancelled
Lint / lint (macos-14, mac) (push) Has been cancelled
Lint / lint (windows-latest, windows) (push) Has been cancelled
Co-authored-by: Francis Lavoie <lavofr@gmail.com>
113 lines
1.6 KiB
Plaintext
113 lines
1.6 KiB
Plaintext
{
|
|
email test@example.com
|
|
dns mock
|
|
tls_resolvers 1.1.1.1 8.8.8.8
|
|
acme_dns
|
|
}
|
|
|
|
site1.example.com {
|
|
}
|
|
|
|
site2.example.com {
|
|
tls {
|
|
resolvers 9.9.9.9 8.8.4.4
|
|
}
|
|
}
|
|
----------
|
|
{
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
":443"
|
|
],
|
|
"routes": [
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"site1.example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"site2.example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"tls": {
|
|
"automation": {
|
|
"policies": [
|
|
{
|
|
"subjects": [
|
|
"site2.example.com"
|
|
],
|
|
"issuers": [
|
|
{
|
|
"challenges": {
|
|
"dns": {
|
|
"resolvers": [
|
|
"9.9.9.9",
|
|
"8.8.4.4"
|
|
]
|
|
}
|
|
},
|
|
"email": "test@example.com",
|
|
"module": "acme"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"issuers": [
|
|
{
|
|
"challenges": {
|
|
"dns": {
|
|
"resolvers": [
|
|
"1.1.1.1",
|
|
"8.8.8.8"
|
|
]
|
|
}
|
|
},
|
|
"email": "test@example.com",
|
|
"module": "acme"
|
|
},
|
|
{
|
|
"ca": "https://acme.zerossl.com/v2/DV90",
|
|
"challenges": {
|
|
"dns": {
|
|
"resolvers": [
|
|
"1.1.1.1",
|
|
"8.8.8.8"
|
|
]
|
|
}
|
|
},
|
|
"email": "test@example.com",
|
|
"module": "acme"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dns": {
|
|
"name": "mock"
|
|
},
|
|
"resolvers": [
|
|
"1.1.1.1",
|
|
"8.8.8.8"
|
|
]
|
|
}
|
|
}
|
|
}
|