v2.8.0-beta.1
版本发布时间: 2024-05-01 08:27:01
caddyserver/caddy最新发布版本:v2.9.0-beta.3(2024-11-06 02:32:38)
Caddy 2.8 is (almost) here! We've made a ton of improvements and fixes and implemented some pretty awesome new features based on your feedback.
Thank you to our sponsors and everyone in the community who contributed! We couldn't have done it without your help. In particular, we'd like to recognize sponsors Stripe, Framer, and ZeroSSL for their positive influence which have greatly enhanced the project.
We've had a lot of documented-deprecated code in place for a long time now, so this version introduces a few more breaking changes than usual; please review the notes below.
This is a beta release, so expect some rough edges. Test in staging before deploying to production, but please try it out! As usual, please file bugs for any issues you encounter. Thank you and have a great day!
:warning: Breaking changes:
- ZeroSSL (#6229) (this is one overall change, but requires some explanation):
- Up to now, Caddy used both Let's Encrypt and ZeroSSL by default to get certificates without any configuration. In 2.8, this is changing slightly. Due to upcoming changes to ZeroSSL accounting policies, ZeroSSL now requires your email address to be able to access their free ACME endpoint.
- As such, Caddy will only implicitly add the ZeroSSL issuer to your config if you provide an email address in your Caddyfile using the
email
global option. (We have already recommended this for years.) If you already do this, you don't have to make any changes and you'll still get Let's Encrypt and ZeroSSL automatically as defaults. - If you use JSON to configure certificate automation policies, you will need to ensure you use the
acme
issuer with youremail
filled out, and theca
field set to ZeroSSL's ACME server URL. - The
zerossl
issuer module is no longer ACME-capable and is now exclusively for the ZeroSSL API. An API key from your ZeroSSL account is required. (The ZeroSSL ACME server can still be used with theacme
module pointed to ZeroSSL's ACME server. You can provide your account email and/or EAB as well.) If you were using the ZeroSSL issuer with an API key, it will now start using ZeroSSL's API, which was probably the expected behavior anyways. The API has several advantages over the ACME endpoint, but may require payment:- Faster response times
- IP certificates
- Management tools in your ZeroSSL account dashboard
- Technical support
- To clarify, Let's Encrypt is still a default issuer even if you don't provide an email address (but we have always strongly recommended to do so).
- You can still use ZeroSSL's ACME endpoint with your own External Account Binding (EAB) credentials.
- See notes in #6229 for some examples and further explanations.
- Removed support for the
lego_deprecated
DNS provider module. It has been deprecated for 4 years. Usecaddy-dns
modules instead; there are over 50 to choose from already. They are more flexible, compile much leaner, and are easier to implement and support. If yours is not supported it can be easily implemented. Sponsors at or above the Business tier can request to have their provider implemented for free. - On-demand TLS: The
ask
option in the JSON has been deprecated in favor of a permission module (Caddyfile unchanged) (#6055), and Caddyfile support forpermission
modules is added (6a02999) - Admin API:
Etag
(used for concurrency control) is now a header, not a trailer. This is less efficient, but virtually no clients properly implement trailer support. - For consistency, the
basicauth
Caddyfile directive has been renamed tobasic_auth
(#6092), andskip_log
has been renamed tolog_skip
(#6066). - The
basic_auth
handler no longer supportsscrypt
(deprecated for over a year) (#6091) - The
forwarded
option has been deprecated for a long time and has now been removed from theremote_ip
matcher (#6085) - Reverse proxy: The
buffer_requests
,buffer_responses
, andmax_buffer_size
settings have been removed after being deprecated for 14 months. Userequest_buffers
andresponse_buffers
instead if you need buffering.
Notable changes:
- http: New
fs
directive can declare a file system plugin to use (#5057) - http: Sensitive headers in the logs are now replaced with
["REDACTED"]
instead of empty array. (#5669) - http: Several improvements to size logging, websockets, flushing, 1xx statuses, and QUIC. (#6173, #6175, #6202, #6150, #6164, #6168)
- http: Can now write access logs for a hostname to more than one logger (#6088)
- http: The
log_append
handler can add fields to the access logs (#6066) - http: Add
uuid
field to access logs when the{http.request.uuid}
placeholder is used (#5859) - http: Changed PROXY protocol libraries add TLV support (#5915)
- caddyfile: Plugin authors can now specify a default ordering for directives, making manual ordering by users less necessary (#5865)
- replacer: A new
{file.*}
global placeholder is available, where*
is a path to a file on disk which contains a value (generally used for secrets) (#5463) - root, rewrite: A
*
matcher token is no longer required in the Caddyfile (#5844) - encode: More media types are now compressed by default (#6081)
- encode: Modify ETag when encoding to comply with RFC 9110 section 8.8.3 (#5849)
- encode: Configurable compression level for
zstd
(#6140) - uri: Can now perform structured query rewrites with
uri query
(#6120, #6165) - cmd: The
--adapter
flag is not needed for config files ending with.caddyfile
(#5919) - file_server: The browse feature can now return a plaintext response (useful for terminals) (#6093)
- file_server: File listings can dereference symlinks if enabled (#5973)
- file_server: Directory listings now include total file size (#6003)
- file_server: Can use precomputed ETags from sidecar files (#6222)
- reverse_proxy: Active health checks can now be configured with consecutive passes/fails to change status (#6154)
- reverse_proxy: A forward proxy can now be specified in config other than a single env var (#6114)
- reverse_proxy: Configurable trusted root CAs is now modular (#6065)
- reverse_proxy: SRV upstreams now support failovers/grace period with cache (#5832)
- reverse_proxy: TLS curves can now be configured (potential preparation for post-quantum) (#5851)
- handle_errors: Handling can now be filtered by response status code more easily (#5965)
- tls: Client authentication validation methods are now modular/pluggable (#6050)
- tls: Trusted CA providers are now modular (#5784)
- tls: New
local_ip
connection matcher (#6074) - tls: Improvements and fixes when certificate managers are configured (#6229)
- tls: Refactor the On-Demand TLS
ask
endpoint into apermission
module, making it pluggable (#6055) - tls: Storage cleaning is now synced across instances that share the storage (#5940)
- acme_server: Configurable allow/deny policies (#5796)
- acme_server: Specify allowed challenge types (#5794)
Changelog
- ac0ad4da Upgrade acmeserver to github.com/go-chi/chi/v5 (#5913)
- 931656bd acmeserver: add policy field to define allow/deny rules (#5796)
- e1aa862e acmeserver: support specifying the allowed challenge types (#5794)
- 4a0492f3 admin: Make
Etag
a header, not a trailer (#6208) - 12174496 admin: Use xxhash for etag (#6207)
- 4f3f6e35 build(deps): bump actions/setup-go from 4 to 5 (#6012)
- 8a50f191 build(deps): bump actions/upload-artifact from 3 to 4 (#6013)
- 1bf72db6 build(deps): bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#5994)
- 223f3143 build(deps): bump peter-evans/repository-dispatch from 2 to 3 (#6080)
- 30d63648 caddyauth: Drop support for
scrypt
(#6091) - f9e11158 caddyauth: Rename
basicauth
tobasic_auth
(#6092) - f4840cfe caddyconfig: Use empty struct instead of bool in map (close #6224) (#6227)
- c0273f1f caddyfile: Add heredoc support to
fmt
command (#6056) - d9aded01 caddyfile: Allow heredoc blank lines (#6051)
- 8bbf8ec6 caddyfile: Assert having a space after heredoc marker to simply check (#6117)
- c369df5c caddyfile: Correctly close the heredoc when the closing marker appears immediately (#6062)
- 1f60328e caddyfile: Fix variadic placeholder false positive when token contains
:
(#5883) - 750d0b83 caddyfile: Normalize & flatten all unmarshalers (#6037)
- 9cd472c0 caddyfile: Populate regexp matcher names by default (#6145)
- b893c8c5 caddyfile: Reject directives in the place of site addresses (#6104)
- e7a534d0 caddyfile: Reject long heredoc markers (#6098)
- 7c48b5fd caddyfile: Switch to slices.Equal for better performance (#6061)
- 63d597c0 caddyhttp: Accept XFF header values with ports, when parsing client IP (#6183)
- 3d7d60f7 caddyhttp: Add
uuid
to access logs when used (#5859) - 45132c5b caddyhttp: Add plaintext response to
file_server browse
(#6093) - 6d97d8d8 caddyhttp: Address some Go 1.20 features (#6252)
- 4c10a054 caddyhttp: Adjust
scheme
placeholder docs (#5910) - 97a56d86 caddyhttp: Allow
header
replacement with empty string (#6163) - 83ef61de caddyhttp: Apply auto HTTPS redir to all interfaces (fix #6226)
- 2fc620d3 caddyhttp: Fix linter warning about deprecation
- f5344f8c caddyhttp: Fix panic when request missing ClientIPVarKey (#6040)
- 2c48dda1 caddyhttp: Only attempt to enable full duplex for HTTP/1.x (#6102)
- 12778880 caddyhttp: Register post-shutdown callbacks (#5948)
- 7b48ce0e caddyhttp: Replace sensitive headers with REDACTED (close #5669)
- cc0c0cf0 caddyhttp: Security enhancements for client IP parsing (#5805)
- 70953e87 caddyhttp: Support multiple logger names per host (#6088)
- bde46211 caddyhttp: Test cases for
%2F
and%252F
(#6084) - c8559c44 caddyhttp: Use sync.Pool to reduce lengthReader allocations (#5848)
- ddb1d2c2 caddyhttp: add http.request.local{,.host,.port} placeholder (#6182)
- 924010cd caddyhttp: close quic connections when server closes (#6202)
- e0daa39c caddyhttp: record num. bytes read when response writer is hijacked (#6173)
- 654a3bb0 caddyhttp: remove duplicate strings.Count in path matcher (fixes #6233) (#6234)
- b568a10d caddyhttp: support unix sockets in
caddy respond
command (#6010) - c93e3045 caddyhttp: suppress flushing if the response is being buffered (#6150)
- 52822a41 caddyhttp: upgrade to cel v0.20.0 (#6161)
- 4512be49 caddytest: Rename adapt tests to
*.caddyfiletest
extension (#6119) - 6a029990 caddytls: Add Caddyfile support for on-demand permission module (close #6260)
- b24ae63e caddytls: Context to DecisionFunc (#5923)
- d129ae6a caddytls: Evict internal certs from cache based on issuer (#6266)
- 57c5b921 caddytls: Make on-demand 'ask' permission modular (#6055)
- 76c4cf5a caddytls: Option to configure certificate lifetime (#6253)
- 3609a4af caddytls: Remove shim code supporting deprecated lego-dns (#6231)
- dc9dd2e4 caddytls: Still provision permission module if ask is specified
- 4a09cf0d caddytls: Sync distributed storage cleaning (#5940)
- 81413cae caddytls: Upgrade ACMEz to v2; support ZeroSSL API; various fixes (#6229)
- 3ae07a73 caddytls: clientauth: leaf verifier: make trusted leaf certs source pluggable (#6050)
- 03f703a0 caddytls: verifier: caddyfile: re-add Caddyfile support (#6127)
- b359ca56 ci/cd: use the build tag
nobadger
to exclude badgerdb (#6031) - 24b0ecc3 cmd: Add newline character to version string in CLI output (#5895)
- e473ae68 cmd: Adjust config load logs/errors (#6032)
- 185ed6fe cmd: Assume Caddyfile based on filename prefix and suffix (#5919)
- e1f4b83f cmd: Fix panic related to config filename (fix #5919)
- 8f87c5d9 cmd: Only validate config is proper JSON if config slice has data (#6250)
- 56c6b3f6 cmd: Preserve LastModified date when exporting storage (#5968)
- de4959fe cmd: fix the output of the
Usage
section (#6138) - 54823f52 cmd: reverseproxy: log: use caddy logger (#6042)
- d70608b6 cmd: upgrade: resolve symlink of the executable (#5891)
- d54dcf15 cmd: use automaxprocs for better perf in containers (#5711)
- e1b9a9d7 core: Add
ctx.Slogger()
which returns anslog
logger (#5945) - cbbd1df9 core: Always make AppDataDir for InstanceID (#5976)
- 174c19a9 core: Apply SO_REUSEPORT to UDP sockets (#5725)
- 46c5db92 core: OnExit hooks (#6128)
- a7479302 core: Support NO_COLOR env var to disable log coloring (#6078)
- 7c82e265 core: quic listener will manage the underlying socket by itself (#5749)
- 03e0a010 encode: Configurable compression level for zstd (#6140)
- 3067074d encode: Improve Etag handling (fix #5849)
- 9ab09433 encode: Slight fix for the previous commit
- e698ec51 encode: write status immediately when status code is informational (#6164)
- ba581146 events: Add debug log
- 7e52db82 fileserver: Add .m4v for browse template icon
- 8f9ffc58 fileserver: Add total file size to directory listing (#6003)
- feb07a7b fileserver: Browse can show symlink target if enabled (#5973)
- b16aba5c fileserver: Enable compression for command by default (#5855)
- 5d8b45c9 fileserver: Escape # and ? in img src (fix #6237)
- f3e849e4 fileserver: Implement caddyfile.Unmarshaler interface (#5850)
- d00824f4 fileserver: Improve Vary handling (#5849)
- 362f33da fileserver: New --precompressed flag (#5880)
- 5a4374be fileserver: Preserve query during canonicalization redirect (#6109)
- cabb5d71 fileserver: Set "Vary: Accept-Encoding" header (see #5849)
- 567d96c6 fileserver: read etags from precomputed files (#6222)
- c839a98f filesystem: Globally declared filesystems,
fs
directive (#5833) - 60abd72c fix: add back text/*
- b8f729b8 fix: add more media types to the compressed by default list
- a4a64a6f gitignore: Add rule for caddyfile.go (#6225)
- 9fc55a97 go.mod: CVE-2023-45142 Update opentelemetry (#5908)
- b49ec051 go.mod: Updated quic-go to v0.40.1 (#5983)
- fe2a02bf go.mod: Upgrade quic-go to v0.39.1
- a46ff50a go.mod: Upgrade to quic-go v0.43.0
- ee358550 go.mod: update quic-go version to v0.40.0 (#5922)
- 258d9061 httpcaddyfile: Add
RegisterDirectiveOrder
function for plugin authors (#5865) - 4181c79a httpcaddyfile: Add optional status code argument to
handle_errors
directive (#5965) - 2a78c9c5 httpcaddyfile: Allow nameless regexp placeholder shorthand (#6113)
- 7984e6f6 httpcaddyfile: Fix TLS automation policy merging with get_certificate (#5896)
- f976c84d httpcaddyfile: Fix cert file decoding to load multiple PEM in one file (#5997)
- c2d889f8 httpcaddyfile: Fix redir
html (#6001) - c27425ef httpcaddyfile: Keep deprecated
skip_log
in directive order (#6153) - ac1f20b9 httpcaddyfile: Remove port from logger names (#5881)
- 5e2f1b5c httpcaddyfile: Rewrite
root
andrewrite
parsing to allow omitting matcher (#5844) - 3efda6fb httpcaddyfile: Skip automate loader if disable_certs is specified (fix #6148)
- da7d8cb2 httpcaddyfile: Sort skip_hosts for deterministic JSON (#5990)
- cb86319b httpcaddyfile: Support client auth verifiers (#6022)
- 96f638ea httpredirectlistener: Only set read limit for when request is HTTP (#5917)
- 3248e4c8 logging: Add
zap.Option
support (#5944) - b9c40e71 logging: Automatic
wrap
default forfilter
encoder (#5980) - 726a9a8f logging: Fix default access logger (#6251)
- 01d5568b logging: Implement
append
encoder, allow flatter filters config (#6069) - 0d44e3ec logging: Implement
log_append
handler (#6066) - 91ec7544 logging: Inline Caddyfile syntax for
ip_mask
filter (#6094) - 0c015470 logging: support
ms
duration format and add docs (#6187) - 8c2a72ad matchers: Drop
forwarded
option fromremote_ip
matcher (#6085) - ed7e3c90 matchers:
query
now ANDs multiple keys (#6054) - 387545a8 metrics: Record request metrics on HTTP errors (#5979)
- e0bf179c modules: fix some typo in conments (#6206)
- dc12bd97 proxyprotocol: use github.com/pires/go-proxyproto (#5915)
- dba556fe refactor: move automaxprocs init in caddycmd.Main()
- 80acf1bf replacer: Fix escaped closing braces (#5995)
- 79797394 replacer: Implement
file.*
global replacements (#5463) - e7336cc3 replacer: use RWMutex to protect static provider (#6184)
- 868af6a0 reverse_proxy: Add grace_period for SRV upstreams to Caddyfile (#6264)
- 613d544a reverseproxy: Accept EOF when buffering
- f658fd05 reverseproxy: Add
tls_curves
option to HTTP transport (#5851) - a9768d2f reverseproxy: Configurable forward proxy URL (#6114)
- 0b381eb7 reverseproxy: Implement modular CA provider for TLS transport (#6065)
- d9ff7b18 reverseproxy: Only change Content-Length when full request is buffered (#5830)
- 9f97df22 reverseproxy: Remove long-deprecated buffering properties
- d93e027e reverseproxy: Reuse buffered request body even if partially drained
- 72ce78d9 reverseproxy: SRV dynamic upstream failover (#5832)
- 74949fb0 reverseproxy: Use xxhash instead of fnv32 for LB (#6203)
- b40cacf5 reverseproxy: Wait for both ends of websocket to close (#6175)
- e65b97f5 reverseproxy: configurable active health_passes and health_fails (#6154)
- da6a569e reverseproxy: cookie should be Secure and SameSite=None when TLS (#6115)
- 1b9042bc reverseproxy: handle buffered data during hijack (#6274)
- 53f70352 reverseproxy: use context.WithoutCancel (#6116)
- 69290d23 rewrite: Implement
uri query
operations (#6120) - 29f57faa rewrite:
uri query
replace operation (#6165) - c6673ad4 staticresp: Use the evaluated response body for sniffing JSON content-type (#6249)
- 0900844c templates: Clarify
include
args docs, add.ClientIP
(#5898) - 4e8245df templates: Delete headers on
httpError
to reset to clean slate (#5905) - 18f34290 templates: Offically make templates extensible (#5939)
- 4173e2c7 tls: accept placeholders in string values of certificate loaders (#5963)
- ed41c924 tls: add reuse_private_keys (#6025)
- e965b111 tls: modularize trusted CA providers (#5784)
- 5ed86896 vars: Allow overriding
http.auth.user.id
in replacer as a special case (#6108) - d1325842 vars: Make nil values act as empty string instead of
"<nil>"
(#6174)
New Contributors
- @perhapsmaple made their first contribution in https://github.com/caddyserver/caddy/pull/5848
- @ddl-ebrown made their first contribution in https://github.com/caddyserver/caddy/pull/5908
- @dlorenc made their first contribution in https://github.com/caddyserver/caddy/pull/5949
- @ankon made their first contribution in https://github.com/caddyserver/caddy/pull/5923
- @bmarwell made their first contribution in https://github.com/caddyserver/caddy/pull/5971
- @armadi1809 made their first contribution in https://github.com/caddyserver/caddy/pull/5976
- @jum made their first contribution in https://github.com/caddyserver/caddy/pull/5968
- @ddemoss222 made their first contribution in https://github.com/caddyserver/caddy/pull/5880
- @tgeoghegan made their first contribution in https://github.com/caddyserver/caddy/pull/5979
- @steffenbusch made their first contribution in https://github.com/caddyserver/caddy/pull/6003
- @networkException made their first contribution in https://github.com/caddyserver/caddy/pull/6010
- @insom made their first contribution in https://github.com/caddyserver/caddy/pull/6021
- @rithvikvibhu made their first contribution in https://github.com/caddyserver/caddy/pull/6025
- @zachgalvin made their first contribution in https://github.com/caddyserver/caddy/pull/6022
- @subnut made their first contribution in https://github.com/caddyserver/caddy/pull/6001
- @elee1766 made their first contribution in https://github.com/caddyserver/caddy/pull/5833
- @nebez made their first contribution in https://github.com/caddyserver/caddy/pull/5805
- @bbaa-bbaa made their first contribution in https://github.com/caddyserver/caddy/pull/6056
- @AnomalRoil made their first contribution in https://github.com/caddyserver/caddy/pull/5961
- @jcchavezs made their first contribution in https://github.com/caddyserver/caddy/pull/6103
- @ottenhoff made their first contribution in https://github.com/caddyserver/caddy/pull/6115
- @thirdkeyword made their first contribution in https://github.com/caddyserver/caddy/pull/6151
- @jbrown-stripe made their first contribution in https://github.com/caddyserver/caddy/pull/6161
- @ImpostorKeanu made their first contribution in https://github.com/caddyserver/caddy/pull/6114
- @sellskin made their first contribution in https://github.com/caddyserver/caddy/pull/6193
- @jadidbourbaki made their first contribution in https://github.com/caddyserver/caddy/pull/6203
- @reallylowest made their first contribution in https://github.com/caddyserver/caddy/pull/6206
- @kylosus made their first contribution in https://github.com/caddyserver/caddy/pull/6093
- @hassanila made their first contribution in https://github.com/caddyserver/caddy/pull/6223
- @epelc made their first contribution in https://github.com/caddyserver/caddy/pull/6225
- @danish-mehmood made their first contribution in https://github.com/caddyserver/caddy/pull/6227
- @omalk98 made their first contribution in https://github.com/caddyserver/caddy/pull/5919
- @dev-polymer made their first contribution in https://github.com/caddyserver/caddy/pull/6140
- @coderwander made their first contribution in https://github.com/caddyserver/caddy/pull/6243
- @clauverjat made their first contribution in https://github.com/caddyserver/caddy/pull/6253
Full Changelog: https://github.com/caddyserver/caddy/compare/v2.7.6...v2.8.0-beta.1
1、 caddy_2.8.0-beta.1_buildable-artifact.pem 3.15KB
2、 caddy_2.8.0-beta.1_buildable-artifact.tar.gz 9.7MB
3、 caddy_2.8.0-beta.1_buildable-artifact.tar.gz.sig 96B
4、 caddy_2.8.0-beta.1_checksums.txt 7.84KB
5、 caddy_2.8.0-beta.1_checksums.txt.pem 3.15KB
6、 caddy_2.8.0-beta.1_checksums.txt.sig 96B
7、 caddy_2.8.0-beta.1_freebsd_amd64.pem 3.15KB
8、 caddy_2.8.0-beta.1_freebsd_amd64.sbom 109.66KB
9、 caddy_2.8.0-beta.1_freebsd_amd64.sbom.pem 3.15KB
10、 caddy_2.8.0-beta.1_freebsd_amd64.sbom.sig 96B
11、 caddy_2.8.0-beta.1_freebsd_amd64.tar.gz 13.8MB
12、 caddy_2.8.0-beta.1_freebsd_amd64.tar.gz.sig 96B
13、 caddy_2.8.0-beta.1_freebsd_arm64.pem 3.14KB
14、 caddy_2.8.0-beta.1_freebsd_arm64.sbom 109.66KB
15、 caddy_2.8.0-beta.1_freebsd_arm64.sbom.pem 3.15KB
16、 caddy_2.8.0-beta.1_freebsd_arm64.sbom.sig 96B
17、 caddy_2.8.0-beta.1_freebsd_arm64.tar.gz 12.75MB
18、 caddy_2.8.0-beta.1_freebsd_arm64.tar.gz.sig 96B
19、 caddy_2.8.0-beta.1_freebsd_armv6.pem 3.15KB
20、 caddy_2.8.0-beta.1_freebsd_armv6.sbom 109.42KB
21、 caddy_2.8.0-beta.1_freebsd_armv6.sbom.pem 3.15KB
22、 caddy_2.8.0-beta.1_freebsd_armv6.sbom.sig 96B
23、 caddy_2.8.0-beta.1_freebsd_armv6.tar.gz 12.98MB
24、 caddy_2.8.0-beta.1_freebsd_armv6.tar.gz.sig 96B
25、 caddy_2.8.0-beta.1_freebsd_armv7.pem 3.15KB
26、 caddy_2.8.0-beta.1_freebsd_armv7.sbom 109.42KB
27、 caddy_2.8.0-beta.1_freebsd_armv7.sbom.pem 3.15KB
28、 caddy_2.8.0-beta.1_freebsd_armv7.sbom.sig 96B
29、 caddy_2.8.0-beta.1_freebsd_armv7.tar.gz 12.96MB
30、 caddy_2.8.0-beta.1_freebsd_armv7.tar.gz.sig 96B
31、 caddy_2.8.0-beta.1_linux_amd64.deb 13.91MB
32、 caddy_2.8.0-beta.1_linux_amd64.deb.pem 3.15KB
33、 caddy_2.8.0-beta.1_linux_amd64.deb.sig 96B
34、 caddy_2.8.0-beta.1_linux_amd64.pem 3.16KB
35、 caddy_2.8.0-beta.1_linux_amd64.sbom 109.66KB
36、 caddy_2.8.0-beta.1_linux_amd64.sbom.pem 3.15KB
37、 caddy_2.8.0-beta.1_linux_amd64.sbom.sig 96B
38、 caddy_2.8.0-beta.1_linux_amd64.tar.gz 13.83MB
39、 caddy_2.8.0-beta.1_linux_amd64.tar.gz.sig 96B
40、 caddy_2.8.0-beta.1_linux_arm64.deb 12.87MB
41、 caddy_2.8.0-beta.1_linux_arm64.deb.pem 3.15KB
42、 caddy_2.8.0-beta.1_linux_arm64.deb.sig 96B
43、 caddy_2.8.0-beta.1_linux_arm64.pem 3.16KB
44、 caddy_2.8.0-beta.1_linux_arm64.sbom 109.66KB
45、 caddy_2.8.0-beta.1_linux_arm64.sbom.pem 3.15KB
46、 caddy_2.8.0-beta.1_linux_arm64.sbom.sig 96B
47、 caddy_2.8.0-beta.1_linux_arm64.tar.gz 12.8MB
48、 caddy_2.8.0-beta.1_linux_arm64.tar.gz.sig 96B
49、 caddy_2.8.0-beta.1_linux_armv5.deb 13.08MB
50、 caddy_2.8.0-beta.1_linux_armv5.deb.pem 3.15KB
51、 caddy_2.8.0-beta.1_linux_armv5.deb.sig 96B
52、 caddy_2.8.0-beta.1_linux_armv5.pem 3.15KB
53、 caddy_2.8.0-beta.1_linux_armv5.sbom 109.42KB
54、 caddy_2.8.0-beta.1_linux_armv5.sbom.pem 3.15KB
55、 caddy_2.8.0-beta.1_linux_armv5.sbom.sig 96B
56、 caddy_2.8.0-beta.1_linux_armv5.tar.gz 13.02MB
57、 caddy_2.8.0-beta.1_linux_armv5.tar.gz.sig 96B
58、 caddy_2.8.0-beta.1_linux_armv6.deb 13.08MB
59、 caddy_2.8.0-beta.1_linux_armv6.deb.pem 3.15KB
60、 caddy_2.8.0-beta.1_linux_armv6.deb.sig 96B
61、 caddy_2.8.0-beta.1_linux_armv6.pem 3.15KB
62、 caddy_2.8.0-beta.1_linux_armv6.sbom 109.42KB
63、 caddy_2.8.0-beta.1_linux_armv6.sbom.pem 3.15KB
64、 caddy_2.8.0-beta.1_linux_armv6.sbom.sig 96B
65、 caddy_2.8.0-beta.1_linux_armv6.tar.gz 13.02MB
66、 caddy_2.8.0-beta.1_linux_armv6.tar.gz.sig 96B
67、 caddy_2.8.0-beta.1_linux_armv7.deb 13.06MB
68、 caddy_2.8.0-beta.1_linux_armv7.deb.pem 3.15KB
69、 caddy_2.8.0-beta.1_linux_armv7.deb.sig 96B
70、 caddy_2.8.0-beta.1_linux_armv7.pem 3.15KB
71、 caddy_2.8.0-beta.1_linux_armv7.sbom 109.42KB
72、 caddy_2.8.0-beta.1_linux_armv7.sbom.pem 3.15KB
73、 caddy_2.8.0-beta.1_linux_armv7.sbom.sig 96B
74、 caddy_2.8.0-beta.1_linux_armv7.tar.gz 12.99MB
75、 caddy_2.8.0-beta.1_linux_armv7.tar.gz.sig 96B
76、 caddy_2.8.0-beta.1_linux_ppc64le.deb 12.63MB
77、 caddy_2.8.0-beta.1_linux_ppc64le.deb.pem 3.15KB
78、 caddy_2.8.0-beta.1_linux_ppc64le.deb.sig 96B
79、 caddy_2.8.0-beta.1_linux_ppc64le.pem 3.14KB
80、 caddy_2.8.0-beta.1_linux_ppc64le.sbom 109.9KB
81、 caddy_2.8.0-beta.1_linux_ppc64le.sbom.pem 3.15KB
82、 caddy_2.8.0-beta.1_linux_ppc64le.sbom.sig 96B
83、 caddy_2.8.0-beta.1_linux_ppc64le.tar.gz 12.56MB
84、 caddy_2.8.0-beta.1_linux_ppc64le.tar.gz.sig 96B
85、 caddy_2.8.0-beta.1_linux_riscv64.deb 13.17MB
86、 caddy_2.8.0-beta.1_linux_riscv64.deb.pem 3.15KB
87、 caddy_2.8.0-beta.1_linux_riscv64.deb.sig 96B
88、 caddy_2.8.0-beta.1_linux_riscv64.pem 3.15KB
89、 caddy_2.8.0-beta.1_linux_riscv64.sbom 109.9KB
90、 caddy_2.8.0-beta.1_linux_riscv64.sbom.pem 3.15KB
91、 caddy_2.8.0-beta.1_linux_riscv64.sbom.sig 96B
92、 caddy_2.8.0-beta.1_linux_riscv64.tar.gz 13.09MB
93、 caddy_2.8.0-beta.1_linux_riscv64.tar.gz.sig 96B
94、 caddy_2.8.0-beta.1_linux_s390x.deb 13.45MB
95、 caddy_2.8.0-beta.1_linux_s390x.deb.pem 3.15KB
96、 caddy_2.8.0-beta.1_linux_s390x.deb.sig 96B
97、 caddy_2.8.0-beta.1_linux_s390x.pem 3.15KB
98、 caddy_2.8.0-beta.1_linux_s390x.sbom 109.65KB
99、 caddy_2.8.0-beta.1_linux_s390x.sbom.pem 3.15KB
100、 caddy_2.8.0-beta.1_linux_s390x.sbom.sig 96B
101、 caddy_2.8.0-beta.1_linux_s390x.tar.gz 13.35MB
102、 caddy_2.8.0-beta.1_linux_s390x.tar.gz.sig 96B
103、 caddy_2.8.0-beta.1_mac_amd64.pem 3.15KB
104、 caddy_2.8.0-beta.1_mac_amd64.sbom 110.4KB
105、 caddy_2.8.0-beta.1_mac_amd64.sbom.pem 3.15KB
106、 caddy_2.8.0-beta.1_mac_amd64.sbom.sig 96B
107、 caddy_2.8.0-beta.1_mac_amd64.tar.gz 14.17MB
108、 caddy_2.8.0-beta.1_mac_amd64.tar.gz.sig 96B
109、 caddy_2.8.0-beta.1_mac_arm64.pem 3.15KB
110、 caddy_2.8.0-beta.1_mac_arm64.sbom 110.4KB
111、 caddy_2.8.0-beta.1_mac_arm64.sbom.pem 3.15KB
112、 caddy_2.8.0-beta.1_mac_arm64.sbom.sig 96B
113、 caddy_2.8.0-beta.1_mac_arm64.tar.gz 13.42MB
114、 caddy_2.8.0-beta.1_mac_arm64.tar.gz.sig 96B
115、 caddy_2.8.0-beta.1_src.pem 3.14KB
116、 caddy_2.8.0-beta.1_src.tar.gz 9.87MB
117、 caddy_2.8.0-beta.1_src.tar.gz.sig 96B
118、 caddy_2.8.0-beta.1_windows_amd64.pem 3.16KB
119、 caddy_2.8.0-beta.1_windows_amd64.sbom 111.1KB
120、 caddy_2.8.0-beta.1_windows_amd64.sbom.pem 3.15KB
121、 caddy_2.8.0-beta.1_windows_amd64.sbom.sig 96B
122、 caddy_2.8.0-beta.1_windows_amd64.zip 14.08MB
123、 caddy_2.8.0-beta.1_windows_amd64.zip.sig 96B
124、 caddy_2.8.0-beta.1_windows_arm64.pem 3.16KB
125、 caddy_2.8.0-beta.1_windows_arm64.sbom 111.1KB
126、 caddy_2.8.0-beta.1_windows_arm64.sbom.pem 3.15KB
127、 caddy_2.8.0-beta.1_windows_arm64.sbom.sig 96B
128、 caddy_2.8.0-beta.1_windows_arm64.zip 12.81MB
129、 caddy_2.8.0-beta.1_windows_arm64.zip.sig 96B
130、 caddy_2.8.0-beta.1_windows_armv5.pem 3.15KB
131、 caddy_2.8.0-beta.1_windows_armv5.sbom 110.86KB
132、 caddy_2.8.0-beta.1_windows_armv5.sbom.pem 3.15KB
133、 caddy_2.8.0-beta.1_windows_armv5.sbom.sig 96B
134、 caddy_2.8.0-beta.1_windows_armv5.zip 13.17MB
135、 caddy_2.8.0-beta.1_windows_armv5.zip.sig 96B
136、 caddy_2.8.0-beta.1_windows_armv6.pem 3.15KB
137、 caddy_2.8.0-beta.1_windows_armv6.sbom 110.86KB
138、 caddy_2.8.0-beta.1_windows_armv6.sbom.pem 3.14KB
139、 caddy_2.8.0-beta.1_windows_armv6.sbom.sig 96B
140、 caddy_2.8.0-beta.1_windows_armv6.zip 13.16MB
141、 caddy_2.8.0-beta.1_windows_armv6.zip.sig 96B
142、 caddy_2.8.0-beta.1_windows_armv7.pem 3.15KB
143、 caddy_2.8.0-beta.1_windows_armv7.sbom 110.86KB
144、 caddy_2.8.0-beta.1_windows_armv7.sbom.pem 3.15KB
145、 caddy_2.8.0-beta.1_windows_armv7.sbom.sig 96B
146、 caddy_2.8.0-beta.1_windows_armv7.zip 13.14MB