├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── build_docker.sh ├── build_scripts.sh ├── local_build.ps1 ├── local_build.sh ├── package.json └── update_package.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | bin/ 15 | release/ 16 | 17 | Dockerfile 18 | .* 19 | *.md 20 | LICENSE 21 | 22 | xcaddy* 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | bin/ 15 | release/ 16 | 17 | .DS_Store 18 | xcaddy* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM cnk3x/golang as builder 2 | 3 | RUN echo ":80\nrespond \"hello caddy server!\"" > /rootfs/Caddyfile 4 | 5 | ENV GOPROXY=https://proxy.golang.com.cn,https://goproxy.cn,direct 6 | 7 | WORKDIR /go/caddy 8 | COPY local_build.sh ./ 9 | RUN chmod +x local_build.sh && \ 10 | ./local_build.sh && \ 11 | mv /go/caddy/caddy /rootfs/caddy && \ 12 | upx /caddy/caddy && \ 13 | echo ":80\nrespond \"hello caddy server!\"" > /caddy/Caddyfile 14 | 15 | FROM scratch 16 | 17 | COPY --from=builder /rootfs/ / 18 | 19 | ENV HOME=/data 20 | WORKDIR /data 21 | VOLUME [ "/data" ] 22 | EXPOSE 80 443 23 | 24 | ENTRYPOINT [ "/caddy" ] 25 | 26 | CMD [ "run", "-environ", "-watch" ] 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # caddy builder 2 | 3 | 官网要编译一个大全插件版本根本不可能,依赖地狱太痛苦了,所以搞了一个项目来编译 caddy, 尽可能的集成官网列出来的插件 4 | 5 | ```text 6 | 下列插件多年没更新,已经不适合最新的代码了,暂时过滤掉 7 | 8 | firecow/caddy-forward-auth //forward_auth: 在2.5.1中已经内置了 9 | github.com/francislavoie/caddy-hcl 10 | github.com/techknowlogick/certmagic-s3 11 | github.com/hslatman/caddy-openapi-validator 12 | github.com/mohammed90/caddy-ssh 13 | github.com/dunglas/vulcain/caddy 14 | github.com/dunglas/mercure/caddy 15 | github.com/RussellLuo/caddy-ext/flagr 16 | github.com/caddyserver/cache-handler 17 | ``` 18 | 19 | ```sh 20 | git clone https://github.com/cnk3x/caddy.git 21 | cd caddy 22 | 23 | # 编译到本地 24 | sh ./build.sh 25 | 26 | # 编译成镜像 27 | # sh ./build_docker.sh 镜像名称 28 | sh ./build_docker.sh ghcr.io/cnk3x/caddy 29 | 30 | ``` 31 | -------------------------------------------------------------------------------- /build_docker.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -eu 4 | 5 | cd $(dirname $0) 6 | ROOT=$(pwd) 7 | 8 | tag=${1:-ghcr.io/cnk3x/caddy:latest} 9 | docker build --tag ${tag} . 10 | docker run --rm ${tag} list-modules 11 | docker run --rm ${tag} version 12 | echo "you can use \`docker push ${tag}\` to publish this repo" 13 | -------------------------------------------------------------------------------- /build_scripts.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -e 4 | 5 | root=$( 6 | cd $(dirname $0) 7 | pwd 8 | ) 9 | 10 | cd ${root} 11 | 12 | modules=$(cat ${root}/package.json | 13 | grep '"path": "' | 14 | sed 's/"path": "//g; s/",//g; s/ //g' | 15 | grep -v 'firecow/caddy-forward-auth' | 16 | grep -v 'RussellLuo/caddy-ext/ratelimit' | 17 | grep -v 'francislavoie/caddy-hcl' | 18 | grep -v 'techknowlogick/certmagic-s3' | 19 | grep -v 'hslatman/caddy-openapi-validator' | 20 | grep -v 'mohammed90/caddy-ssh' | 21 | grep -v 'dunglas/vulcain/caddy' | 22 | grep -v 'dunglas/mercure/caddy' | 23 | grep -v 'silinternational/certmagic-storage-dynamodb' | 24 | # sed 's|silinternational/certmagic-storage-dynamodb/v2|silinternational/certmagic-storage-dynamodb/v3|g' | 25 | grep -v 'firecow/caddy-elastic-encoder' | 26 | grep -v 'RussellLuo/caddy-ext/flagr' | 27 | grep -v 'caddyserver/cache-handler' | 28 | sed 's|caddyserver/nginx-adapter|caddyserver/nginx-adapter@master|g' | 29 | sed 's|lucaslorentz/caddy-docker-proxy/plugin/v2|lucaslorentz/caddy-docker-proxy/v2|g' | 30 | sort -u) 31 | 32 | shfn=local_build.sh 33 | cat >${shfn} <>${shfn} 46 | done 47 | echo " --with github.com/darkweak/souin@v1.6.6" >>${shfn} 48 | 49 | psfn=local_build.ps1 50 | cat >${psfn} <>${psfn} 61 | done 62 | echo " --with github.com/darkweak/souin@v1.6.6" >>${psfn} 63 | -------------------------------------------------------------------------------- /local_build.ps1: -------------------------------------------------------------------------------- 1 | $env:XCADDY_GO_BUILD_FLAGS = "-ldflags '-s -w -extldflags -static'" 2 | $env:GOPROXY = "https://proxy.golang.com.cn,direct" 3 | $env:GOBIN = Get-Location 4 | $env:XCADDY_SKIP_CLEANUP = 1 5 | go install -v github.com/caddyserver/xcaddy/cmd/xcaddy@master 6 | 7 | ./xcaddy build ` 8 | --with github.com/Elegant996/scgi-transport ` 9 | --with github.com/HeavenVolkoff/caddy-authelia/plugin ` 10 | --with github.com/RussellLuo/caddy-ext/requestbodyvar ` 11 | --with github.com/RussellLuo/olaf/caddyconfig/adapter ` 12 | --with github.com/WingLim/caddy-webhook ` 13 | --with github.com/abiosoft/caddy-exec ` 14 | --with github.com/abiosoft/caddy-hmac ` 15 | --with github.com/abiosoft/caddy-json-parse ` 16 | --with github.com/abiosoft/caddy-json-schema ` 17 | --with github.com/abiosoft/caddy-named-routes ` 18 | --with github.com/abiosoft/caddy-yaml ` 19 | --with github.com/aksdb/caddy-cgi/v2 ` 20 | --with github.com/baldinof/caddy-supervisor ` 21 | --with github.com/caddy-dns/alidns ` 22 | --with github.com/caddy-dns/azure ` 23 | --with github.com/caddy-dns/cloudflare ` 24 | --with github.com/caddy-dns/digitalocean ` 25 | --with github.com/caddy-dns/dnspod ` 26 | --with github.com/caddy-dns/duckdns ` 27 | --with github.com/caddy-dns/gandi ` 28 | --with github.com/caddy-dns/godaddy ` 29 | --with github.com/caddy-dns/googleclouddns ` 30 | --with github.com/caddy-dns/hetzner ` 31 | --with github.com/caddy-dns/lego-deprecated ` 32 | --with github.com/caddy-dns/metaname ` 33 | --with github.com/caddy-dns/netcup ` 34 | --with github.com/caddy-dns/netlify ` 35 | --with github.com/caddy-dns/openstack-designate ` 36 | --with github.com/caddy-dns/route53 ` 37 | --with github.com/caddy-dns/vultr ` 38 | --with github.com/caddyserver/jsonc-adapter ` 39 | --with github.com/caddyserver/nginx-adapter@master ` 40 | --with github.com/caddyserver/ntlm-transport ` 41 | --with github.com/caddyserver/replace-response ` 42 | --with github.com/caddyserver/transform-encoder ` 43 | --with github.com/casbin/caddy-authz/v2 ` 44 | --with github.com/chukmunnlee/caddy-openapi ` 45 | --with github.com/circa10a/caddy-geofence ` 46 | --with github.com/cubic3d/caddy-ct ` 47 | --with github.com/cubic3d/caddy-quantity-limiter ` 48 | --with github.com/darkweak/souin/plugins/caddy ` 49 | --with github.com/gamalan/caddy-tlsredis ` 50 | --with github.com/gbox-proxy/gbox ` 51 | --with github.com/ggicci/caddy-jwt ` 52 | --with github.com/git001/caddyv2-upload ` 53 | --with github.com/greenpau/caddy-git ` 54 | --with github.com/greenpau/caddy-security ` 55 | --with github.com/greenpau/caddy-trace ` 56 | --with github.com/hairyhenderson/caddy-teapot-module ` 57 | --with github.com/hslatman/caddy-crowdsec-bouncer ` 58 | --with github.com/imgk/caddy-trojan ` 59 | --with github.com/kirsch33/realip ` 60 | --with github.com/lindenlab/caddy-s3-proxy ` 61 | --with github.com/lolPants/caddy-requestid ` 62 | --with github.com/lucaslorentz/caddy-docker-proxy/v2 ` 63 | --with github.com/mastercactapus/caddy2-proxyprotocol ` 64 | --with github.com/mholt/caddy-dynamicdns ` 65 | --with github.com/mholt/caddy-l4 ` 66 | --with github.com/mholt/caddy-ratelimit ` 67 | --with github.com/mholt/caddy-webdav ` 68 | --with github.com/mpilhlt/caddy-conneg ` 69 | --with github.com/muety/caddy-pirsch-plugin ` 70 | --with github.com/muety/caddy-remote-host ` 71 | --with github.com/porech/caddy-maxmind-geolocation ` 72 | --with github.com/pteich/caddy-tlsconsul ` 73 | --with github.com/shift72/caddy-geo-ip ` 74 | --with github.com/sillygod/cdp-cache ` 75 | --with github.com/sjtug/caddy2-filter ` 76 | --with github.com/techknowlogick/caddy-s3browser ` 77 | --with github.com/tosie/caddy-dns-linode ` 78 | --with github.com/ueffel/caddy-basic-auth-filter ` 79 | --with github.com/ueffel/caddy-brotli ` 80 | --with github.com/ueffel/caddy-imagefilter/defaults ` 81 | --with github.com/ueffel/caddy-tls-format ` 82 | --with magnax.ca/caddy/gopkg ` 83 | --with github.com/darkweak/souin@v1.6.6 84 | -------------------------------------------------------------------------------- /local_build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | set -eu 3 | export XCADDY_GO_BUILD_FLAGS="-ldflags '-s -w -extldflags -static'" 4 | export GOPROXY=https://proxy.golang.com.cn,direct 5 | export GOBIN=/mnt/d/devlops/caddy 6 | export XCADDY_SKIP_CLEANUP=1 7 | go install -v github.com/caddyserver/xcaddy/cmd/xcaddy@master 8 | 9 | ./xcaddy build \ 10 | --with github.com/Elegant996/scgi-transport \ 11 | --with github.com/HeavenVolkoff/caddy-authelia/plugin \ 12 | --with github.com/RussellLuo/caddy-ext/requestbodyvar \ 13 | --with github.com/RussellLuo/olaf/caddyconfig/adapter \ 14 | --with github.com/WingLim/caddy-webhook \ 15 | --with github.com/abiosoft/caddy-exec \ 16 | --with github.com/abiosoft/caddy-hmac \ 17 | --with github.com/abiosoft/caddy-json-parse \ 18 | --with github.com/abiosoft/caddy-json-schema \ 19 | --with github.com/abiosoft/caddy-named-routes \ 20 | --with github.com/abiosoft/caddy-yaml \ 21 | --with github.com/aksdb/caddy-cgi/v2 \ 22 | --with github.com/baldinof/caddy-supervisor \ 23 | --with github.com/caddy-dns/alidns \ 24 | --with github.com/caddy-dns/azure \ 25 | --with github.com/caddy-dns/cloudflare \ 26 | --with github.com/caddy-dns/digitalocean \ 27 | --with github.com/caddy-dns/dnspod \ 28 | --with github.com/caddy-dns/duckdns \ 29 | --with github.com/caddy-dns/gandi \ 30 | --with github.com/caddy-dns/godaddy \ 31 | --with github.com/caddy-dns/googleclouddns \ 32 | --with github.com/caddy-dns/hetzner \ 33 | --with github.com/caddy-dns/lego-deprecated \ 34 | --with github.com/caddy-dns/metaname \ 35 | --with github.com/caddy-dns/netcup \ 36 | --with github.com/caddy-dns/netlify \ 37 | --with github.com/caddy-dns/openstack-designate \ 38 | --with github.com/caddy-dns/route53 \ 39 | --with github.com/caddy-dns/vultr \ 40 | --with github.com/caddyserver/jsonc-adapter \ 41 | --with github.com/caddyserver/nginx-adapter@master \ 42 | --with github.com/caddyserver/ntlm-transport \ 43 | --with github.com/caddyserver/replace-response \ 44 | --with github.com/caddyserver/transform-encoder \ 45 | --with github.com/casbin/caddy-authz/v2 \ 46 | --with github.com/chukmunnlee/caddy-openapi \ 47 | --with github.com/circa10a/caddy-geofence \ 48 | --with github.com/cubic3d/caddy-ct \ 49 | --with github.com/cubic3d/caddy-quantity-limiter \ 50 | --with github.com/darkweak/souin/plugins/caddy \ 51 | --with github.com/gamalan/caddy-tlsredis \ 52 | --with github.com/gbox-proxy/gbox \ 53 | --with github.com/ggicci/caddy-jwt \ 54 | --with github.com/git001/caddyv2-upload \ 55 | --with github.com/greenpau/caddy-git \ 56 | --with github.com/greenpau/caddy-security \ 57 | --with github.com/greenpau/caddy-trace \ 58 | --with github.com/hairyhenderson/caddy-teapot-module \ 59 | --with github.com/hslatman/caddy-crowdsec-bouncer \ 60 | --with github.com/imgk/caddy-trojan \ 61 | --with github.com/kirsch33/realip \ 62 | --with github.com/lindenlab/caddy-s3-proxy \ 63 | --with github.com/lolPants/caddy-requestid \ 64 | --with github.com/lucaslorentz/caddy-docker-proxy/v2 \ 65 | --with github.com/mastercactapus/caddy2-proxyprotocol \ 66 | --with github.com/mholt/caddy-dynamicdns \ 67 | --with github.com/mholt/caddy-l4 \ 68 | --with github.com/mholt/caddy-ratelimit \ 69 | --with github.com/mholt/caddy-webdav \ 70 | --with github.com/mpilhlt/caddy-conneg \ 71 | --with github.com/muety/caddy-pirsch-plugin \ 72 | --with github.com/muety/caddy-remote-host \ 73 | --with github.com/porech/caddy-maxmind-geolocation \ 74 | --with github.com/pteich/caddy-tlsconsul \ 75 | --with github.com/shift72/caddy-geo-ip \ 76 | --with github.com/sillygod/cdp-cache \ 77 | --with github.com/sjtug/caddy2-filter \ 78 | --with github.com/techknowlogick/caddy-s3browser \ 79 | --with github.com/tosie/caddy-dns-linode \ 80 | --with github.com/ueffel/caddy-basic-auth-filter \ 81 | --with github.com/ueffel/caddy-brotli \ 82 | --with github.com/ueffel/caddy-imagefilter/defaults \ 83 | --with github.com/ueffel/caddy-tls-format \ 84 | --with magnax.ca/caddy/gopkg \ 85 | --with github.com/darkweak/souin@v1.6.6 86 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 200, 3 | "result": [ 4 | { 5 | "id": "07861d0e-a12e-4f21-a04b-10845f724322", 6 | "path": "github.com/Elegant996/scgi-transport", 7 | "published": "2022-05-01T07:17:46.849074Z", 8 | "updated": "2022-05-01T07:17:46.849074Z", 9 | "listed": true, 10 | "available": true, 11 | "downloads": 26, 12 | "modules": [ 13 | { 14 | "name": "http.reverse_proxy.transport.scgi", 15 | "docs": "http.reverse_proxy.transport.scgi facilitates SCGI communication.", 16 | "package": "github.com/Elegant996/scgi-transport", 17 | "repo": "https://github.com/Elegant996/scgi-transport" 18 | } 19 | ], 20 | "repo": "https://github.com/Elegant996/scgi-transport" 21 | }, 22 | { 23 | "id": "36b793e4-1882-4668-ac53-e4d16b67e104", 24 | "path": "github.com/HeavenVolkoff/caddy-authelia/plugin", 25 | "published": "2021-08-06T01:14:17.819196Z", 26 | "updated": "2021-08-06T01:14:17.819196Z", 27 | "listed": true, 28 | "available": true, 29 | "downloads": 442, 30 | "modules": [ 31 | { 32 | "name": "http.handlers.authelia", 33 | "docs": "http.handlers.authelia implements a plugin for securing routes with authentication", 34 | "package": "github.com/HeavenVolkoff/caddy-authelia/plugin", 35 | "repo": "https://github.com/HeavenVolkoff/caddy-authelia" 36 | } 37 | ], 38 | "repo": "https://github.com/HeavenVolkoff/caddy-authelia" 39 | }, 40 | { 41 | "id": "56a05304-6aaa-4337-bcc8-16820a30bd6a", 42 | "path": "github.com/RussellLuo/caddy-ext/flagr", 43 | "published": "2021-06-20T13:48:33.325546Z", 44 | "updated": "2021-06-20T13:48:33.325546Z", 45 | "listed": true, 46 | "available": true, 47 | "downloads": 159, 48 | "repo": "https://github.com/RussellLuo/caddy-ext" 49 | }, 50 | { 51 | "id": "8ecfd416-72fb-4ea6-a5b5-78b4f273e08b", 52 | "path": "github.com/RussellLuo/caddy-ext/ratelimit", 53 | "published": "2021-01-29T01:42:13.78122Z", 54 | "updated": "2021-01-29T01:42:13.78122Z", 55 | "listed": true, 56 | "available": true, 57 | "downloads": 3077, 58 | "modules": [ 59 | { 60 | "name": "http.handlers.rate_limit", 61 | "docs": "http.handlers.rate_limit implements a handler for rate-limiting.", 62 | "package": "github.com/RussellLuo/caddy-ext/ratelimit", 63 | "repo": "https://github.com/RussellLuo/caddy-ext" 64 | } 65 | ], 66 | "repo": "https://github.com/RussellLuo/caddy-ext" 67 | }, 68 | { 69 | "id": "b59c81ca-4670-480c-8aa0-0ed53caa0e8c", 70 | "path": "github.com/RussellLuo/caddy-ext/requestbodyvar", 71 | "published": "2022-02-23T07:58:40.889409Z", 72 | "updated": "2022-02-23T07:58:40.889409Z", 73 | "listed": true, 74 | "available": true, 75 | "downloads": 76, 76 | "modules": [ 77 | { 78 | "name": "http.handlers.request_body_var", 79 | "docs": "http.handlers.request_body_var implements an HTTP handler that replaces {http.request.body.*}\nwith the value of the given field from request body, if any.", 80 | "package": "github.com/RussellLuo/caddy-ext/requestbodyvar", 81 | "repo": "https://github.com/RussellLuo/caddy-ext" 82 | } 83 | ], 84 | "repo": "https://github.com/RussellLuo/caddy-ext" 85 | }, 86 | { 87 | "id": "2e36b1a5-f2fa-487e-b958-13813ffe0f65", 88 | "path": "github.com/RussellLuo/olaf/caddyconfig/adapter", 89 | "published": "2021-09-07T00:46:01.438562Z", 90 | "updated": "2021-09-07T00:46:01.438562Z", 91 | "listed": true, 92 | "available": true, 93 | "downloads": 120, 94 | "repo": "https://github.com/RussellLuo/olaf" 95 | }, 96 | { 97 | "id": "0d299b4a-126c-4247-86b6-8b6a87c62e07", 98 | "path": "github.com/WingLim/caddy-webhook", 99 | "published": "2021-05-18T09:29:14.75125Z", 100 | "updated": "2021-06-12T07:13:46.119938Z", 101 | "listed": true, 102 | "available": true, 103 | "downloads": 1129, 104 | "modules": [ 105 | { 106 | "name": "http.handlers.webhook", 107 | "docs": "http.handlers.webhook is the module configuration.", 108 | "package": "github.com/WingLim/caddy-webhook", 109 | "repo": "https://github.com/WingLim/caddy-webhook" 110 | } 111 | ], 112 | "repo": "https://github.com/WingLim/caddy-webhook" 113 | }, 114 | { 115 | "id": "a42d2a6a-c9a0-428f-88de-099bcab9754a", 116 | "path": "github.com/abiosoft/caddy-exec", 117 | "published": "2020-07-19T13:33:20.65228Z", 118 | "updated": "2020-07-19T13:33:20.65228Z", 119 | "listed": true, 120 | "available": true, 121 | "downloads": 7971, 122 | "modules": [ 123 | { 124 | "name": "exec", 125 | "docs": "exec is top level module that runs shell commands.", 126 | "package": "github.com/abiosoft/caddy-exec", 127 | "repo": "https://github.com/abiosoft/caddy-exec" 128 | }, 129 | { 130 | "name": "http.handlers.exec", 131 | "docs": "http.handlers.exec implements an HTTP handler that runs shell command.", 132 | "package": "github.com/abiosoft/caddy-exec", 133 | "repo": "https://github.com/abiosoft/caddy-exec" 134 | }, 135 | { 136 | "name": "http.matchers.exec_noop", 137 | "docs": "http.matchers.exec_noop is a matcher that blocks all requests.\nIt's primary purpose is to ensure the command is not\nexecuted when no route/matcher is specified.\nLimitation of Caddyfile config. JSON/API config do not need this.", 138 | "package": "github.com/abiosoft/caddy-exec", 139 | "repo": "https://github.com/abiosoft/caddy-exec" 140 | }, 141 | { 142 | "name": "http.matchers.execnopmatch", 143 | "docs": "http.matchers.execnopmatch is a matcher that blocks all request.\nIt's primary purpose is to ensure the command is not\nexecuted when no route/matcher is specified.\nLimitation of Caddyfile config. JSON/API config do not need this.", 144 | "package": "github.com/abiosoft/caddy-exec", 145 | "repo": "https://github.com/abiosoft/caddy-exec" 146 | } 147 | ], 148 | "repo": "https://github.com/abiosoft/caddy-exec" 149 | }, 150 | { 151 | "id": "3d4559ff-1e66-419a-bb56-7ba3c76475ad", 152 | "path": "github.com/abiosoft/caddy-hmac", 153 | "published": "2020-07-19T13:36:04.852387Z", 154 | "updated": "2020-07-19T13:36:04.852387Z", 155 | "listed": true, 156 | "available": true, 157 | "downloads": 2457, 158 | "modules": [ 159 | { 160 | "name": "http.handlers.hmac", 161 | "docs": "http.handlers.hmac implements an HTTP handler that\nvalidates request body with hmac.", 162 | "package": "github.com/abiosoft/caddy-hmac", 163 | "repo": "https://github.com/abiosoft/caddy-hmac" 164 | } 165 | ], 166 | "repo": "https://github.com/abiosoft/caddy-hmac" 167 | }, 168 | { 169 | "id": "6e012b72-2db2-4799-965f-f3cda0264396", 170 | "path": "github.com/abiosoft/caddy-json-parse", 171 | "published": "2020-07-19T13:35:51.247743Z", 172 | "updated": "2020-07-19T13:35:51.247743Z", 173 | "listed": true, 174 | "available": true, 175 | "downloads": 3509, 176 | "modules": [ 177 | { 178 | "name": "http.handlers.json_parse", 179 | "docs": "http.handlers.json_parse implements an HTTP handler that parses\njson body as placeholders.", 180 | "package": "github.com/abiosoft/caddy-json-parse", 181 | "repo": "https://github.com/abiosoft/caddy-json-parse" 182 | } 183 | ], 184 | "repo": "https://github.com/abiosoft/caddy-json-parse" 185 | }, 186 | { 187 | "id": "e592b932-3195-446e-866b-1b32738317a1", 188 | "path": "github.com/abiosoft/caddy-json-schema", 189 | "published": "2020-07-19T13:33:47.091962Z", 190 | "updated": "2020-07-19T13:33:47.091962Z", 191 | "listed": true, 192 | "available": true, 193 | "downloads": 2202, 194 | "repo": "https://github.com/abiosoft/caddy-json-schema" 195 | }, 196 | { 197 | "id": "6a4c8c4a-358b-415b-97b6-190259ca9702", 198 | "path": "github.com/abiosoft/caddy-named-routes", 199 | "published": "2020-07-19T13:34:20.45159Z", 200 | "updated": "2020-07-19T13:34:20.45159Z", 201 | "listed": true, 202 | "available": true, 203 | "downloads": 1977, 204 | "repo": "https://github.com/abiosoft/caddy-named-routes" 205 | }, 206 | { 207 | "id": "b7569af9-cfdd-4135-8bf9-70d2c3d2c6bd", 208 | "path": "github.com/abiosoft/caddy-yaml", 209 | "published": "2020-07-19T13:32:22.020306Z", 210 | "updated": "2020-07-19T13:32:22.020306Z", 211 | "listed": true, 212 | "available": true, 213 | "downloads": 2519, 214 | "repo": "https://github.com/abiosoft/caddy-yaml" 215 | }, 216 | { 217 | "id": "c60b3149-4457-4c29-994d-16c3afe19cab", 218 | "path": "github.com/aksdb/caddy-cgi/v2", 219 | "published": "2020-08-02T14:02:27.956805Z", 220 | "updated": "2020-08-02T14:02:27.956805Z", 221 | "listed": true, 222 | "available": true, 223 | "downloads": 4441, 224 | "modules": [ 225 | { 226 | "name": "http.handlers.cgi", 227 | "package": "github.com/aksdb/caddy-cgi/v2", 228 | "repo": "https://github.com/aksdb/caddy-cgi" 229 | } 230 | ], 231 | "repo": "https://github.com/aksdb/caddy-cgi" 232 | }, 233 | { 234 | "id": "b39b2222-9489-4c49-89c0-f456e369d8aa", 235 | "path": "github.com/baldinof/caddy-supervisor", 236 | "published": "2021-07-07T07:31:46.811256Z", 237 | "updated": "2021-07-07T07:31:46.811256Z", 238 | "listed": true, 239 | "available": true, 240 | "downloads": 507, 241 | "modules": [ 242 | { 243 | "name": "supervisor", 244 | "package": "github.com/baldinof/caddy-supervisor", 245 | "repo": "https://github.com/baldinof/caddy-supervisor" 246 | } 247 | ], 248 | "repo": "https://github.com/baldinof/caddy-supervisor" 249 | }, 250 | { 251 | "id": "79426037-3bc0-40c7-b59c-ad9bded157d0", 252 | "path": "github.com/caddy-dns/alidns", 253 | "published": "2021-01-25T13:10:25.949441Z", 254 | "updated": "2021-01-25T13:10:25.949441Z", 255 | "listed": true, 256 | "available": true, 257 | "downloads": 2535, 258 | "modules": [ 259 | { 260 | "name": "dns.providers.alidns", 261 | "docs": "dns.providers.alidns wraps the provider implementation as a Caddy module.", 262 | "package": "github.com/caddy-dns/alidns", 263 | "repo": "https://github.com/caddy-dns/alidns" 264 | } 265 | ], 266 | "repo": "https://github.com/caddy-dns/alidns" 267 | }, 268 | { 269 | "id": "1a854225-3cd7-4e13-8d33-4e630dd000a3", 270 | "path": "github.com/caddy-dns/azure", 271 | "published": "2021-01-28T00:16:24.438391Z", 272 | "updated": "2021-01-28T00:16:24.438391Z", 273 | "listed": true, 274 | "available": true, 275 | "downloads": 1633, 276 | "modules": [ 277 | { 278 | "name": "dns.providers.azure", 279 | "docs": "dns.providers.azure wraps the provider implementation as a Caddy module.", 280 | "package": "github.com/caddy-dns/azure", 281 | "repo": "https://github.com/caddy-dns/azure" 282 | } 283 | ], 284 | "repo": "https://github.com/caddy-dns/azure" 285 | }, 286 | { 287 | "id": "e97af045-03cf-427c-96f5-5607516080e7", 288 | "path": "github.com/caddy-dns/cloudflare", 289 | "published": "2020-07-18T02:08:15.066803Z", 290 | "updated": "2021-05-05T23:01:21.21005Z", 291 | "listed": true, 292 | "available": true, 293 | "downloads": 27397, 294 | "modules": [ 295 | { 296 | "name": "dns.providers.cloudflare", 297 | "docs": "dns.providers.cloudflare wraps the provider implementation as a Caddy module.", 298 | "package": "github.com/caddy-dns/cloudflare", 299 | "repo": "https://github.com/caddy-dns/cloudflare" 300 | } 301 | ], 302 | "repo": "https://github.com/caddy-dns/cloudflare" 303 | }, 304 | { 305 | "id": "7283ff16-904e-4861-a70a-6e01921148cf", 306 | "path": "github.com/caddy-dns/digitalocean", 307 | "published": "2021-01-21T23:40:53.039188Z", 308 | "updated": "2021-01-21T23:40:53.039188Z", 309 | "listed": true, 310 | "available": true, 311 | "downloads": 2258, 312 | "modules": [ 313 | { 314 | "name": "dns.providers.digitalocean", 315 | "docs": "dns.providers.digitalocean wraps the provider implementation as a Caddy module.", 316 | "package": "github.com/caddy-dns/digitalocean", 317 | "repo": "https://github.com/caddy-dns/digitalocean" 318 | } 319 | ], 320 | "repo": "https://github.com/caddy-dns/digitalocean" 321 | }, 322 | { 323 | "id": "8c33b009-8be6-4cb4-b854-1eece836910c", 324 | "path": "github.com/caddy-dns/dnspod", 325 | "published": "2020-07-25T08:48:23.699412Z", 326 | "updated": "2020-07-25T08:48:23.699412Z", 327 | "listed": true, 328 | "available": true, 329 | "downloads": 3694, 330 | "modules": [ 331 | { 332 | "name": "dns.providers.dnspod", 333 | "docs": "dns.providers.dnspod wraps the provider implementation as a Caddy module.", 334 | "package": "github.com/caddy-dns/dnspod", 335 | "repo": "https://github.com/caddy-dns/dnspod" 336 | } 337 | ], 338 | "repo": "https://github.com/caddy-dns/dnspod" 339 | }, 340 | { 341 | "id": "7d996720-ae83-4a79-8684-cba7f1fa682a", 342 | "path": "github.com/caddy-dns/duckdns", 343 | "published": "2020-12-22T04:55:42.428017Z", 344 | "updated": "2020-12-22T04:55:42.428017Z", 345 | "listed": true, 346 | "available": true, 347 | "downloads": 6065, 348 | "modules": [ 349 | { 350 | "name": "dns.providers.duckdns", 351 | "docs": "dns.providers.duckdns wraps the provider implementation as a Caddy module.", 352 | "package": "github.com/caddy-dns/duckdns", 353 | "repo": "https://github.com/caddy-dns/duckdns" 354 | } 355 | ], 356 | "repo": "https://github.com/caddy-dns/duckdns" 357 | }, 358 | { 359 | "id": "ec4a1bf7-4155-4391-adac-941900ab4120", 360 | "path": "github.com/caddy-dns/gandi", 361 | "published": "2021-10-20T14:53:31.238584Z", 362 | "updated": "2021-10-20T14:53:31.238584Z", 363 | "listed": true, 364 | "available": true, 365 | "downloads": 1244, 366 | "modules": [ 367 | { 368 | "name": "dns.providers.gandi", 369 | "docs": "dns.providers.gandi wraps the provider implementation as a Caddy module.", 370 | "package": "github.com/caddy-dns/gandi", 371 | "repo": "https://github.com/caddy-dns/gandi" 372 | } 373 | ], 374 | "repo": "https://github.com/caddy-dns/gandi" 375 | }, 376 | { 377 | "id": "ee98d407-b7a0-4aa8-aea7-b54303b7186b", 378 | "path": "github.com/caddy-dns/godaddy", 379 | "published": "2022-01-28T17:03:49.463153Z", 380 | "updated": "2022-01-28T17:03:49.463153Z", 381 | "listed": true, 382 | "available": true, 383 | "downloads": 198, 384 | "modules": [ 385 | { 386 | "name": "dns.providers.godaddy", 387 | "docs": "dns.providers.godaddy wraps the provider implementation as a Caddy module.", 388 | "package": "github.com/caddy-dns/godaddy", 389 | "repo": "https://github.com/caddy-dns/godaddy" 390 | } 391 | ], 392 | "repo": "https://github.com/caddy-dns/godaddy" 393 | }, 394 | { 395 | "id": "6b956c27-48ee-470a-97b9-c77f0353357c", 396 | "path": "github.com/caddy-dns/googleclouddns", 397 | "published": "2021-10-12T03:10:39.435263Z", 398 | "updated": "2021-10-12T03:10:39.435263Z", 399 | "listed": true, 400 | "available": true, 401 | "downloads": 349, 402 | "modules": [ 403 | { 404 | "name": "dns.providers.googleclouddns", 405 | "docs": "dns.providers.googleclouddns lets Caddy read and manipulate DNS records hosted by this DNS provider.", 406 | "package": "github.com/caddy-dns/googleclouddns", 407 | "repo": "https://github.com/caddy-dns/googleclouddns" 408 | } 409 | ], 410 | "repo": "https://github.com/caddy-dns/googleclouddns" 411 | }, 412 | { 413 | "id": "3c73693d-6fe5-494b-b7f4-2909e9b98902", 414 | "path": "github.com/caddy-dns/hetzner", 415 | "published": "2021-01-19T16:53:11.875578Z", 416 | "updated": "2021-01-19T16:53:11.875578Z", 417 | "listed": true, 418 | "available": true, 419 | "downloads": 1928, 420 | "modules": [ 421 | { 422 | "name": "dns.providers.hetzner", 423 | "docs": "dns.providers.hetzner wraps the provider implementation as a Caddy module.", 424 | "package": "github.com/caddy-dns/hetzner", 425 | "repo": "https://github.com/caddy-dns/hetzner" 426 | } 427 | ], 428 | "repo": "https://github.com/caddy-dns/hetzner" 429 | }, 430 | { 431 | "id": "95315632-b654-49bc-9e87-949578978fdb", 432 | "path": "github.com/caddy-dns/lego-deprecated", 433 | "published": "2020-07-18T02:06:26.793754Z", 434 | "updated": "2020-07-18T02:06:26.793754Z", 435 | "listed": true, 436 | "available": true, 437 | "downloads": 5573, 438 | "modules": [ 439 | { 440 | "name": "dns.providers.lego_deprecated", 441 | "docs": "dns.providers.lego_deprecated is a shim module that allows any and all of the\nDNS providers in go-acme/lego to be used with Caddy. They must\nbe configured via environment variables, they do not support\ncancellation in the case of frequent config changes.\n\nEven though this module is in the dns.providers namespace, it\nis only a special case for solving ACME challenges, intended to\nreplace the modules that used to be in the now-defunct tls.dns\nnamespace. Using it in other places of the Caddy config will\nresult in errors.\n\nThis module will eventually go away in favor of the modules that\nmake use of the libdns APIs: https://github.com/libdns", 442 | "package": "github.com/caddy-dns/lego-deprecated", 443 | "repo": "https://github.com/caddy-dns/lego-deprecated" 444 | } 445 | ], 446 | "repo": "https://github.com/caddy-dns/lego-deprecated" 447 | }, 448 | { 449 | "id": "f6937a66-1f22-4352-8a70-9a86573e090b", 450 | "path": "github.com/caddy-dns/metaname", 451 | "published": "2022-02-18T00:48:59.137266Z", 452 | "updated": "2022-02-18T00:48:59.137266Z", 453 | "listed": true, 454 | "available": true, 455 | "downloads": 59, 456 | "modules": [ 457 | { 458 | "name": "dns.providers.metaname", 459 | "docs": "dns.providers.metaname wraps the provider implementation as a Caddy module.", 460 | "package": "github.com/caddy-dns/metaname", 461 | "repo": "https://github.com/caddy-dns/metaname" 462 | } 463 | ], 464 | "repo": "https://github.com/caddy-dns/metaname" 465 | }, 466 | { 467 | "id": "cf42a35c-e129-4f12-bfc0-fb7322d0a965", 468 | "path": "github.com/caddy-dns/netcup", 469 | "published": "2022-01-14T19:53:24.729496Z", 470 | "updated": "2022-01-14T19:53:24.729496Z", 471 | "listed": true, 472 | "available": true, 473 | "downloads": 120, 474 | "modules": [ 475 | { 476 | "name": "dns.providers.netcup", 477 | "docs": "dns.providers.netcup lets Caddy read and manipulate DNS records hosted by this DNS provider.", 478 | "package": "github.com/caddy-dns/netcup", 479 | "repo": "https://github.com/caddy-dns/netcup" 480 | } 481 | ], 482 | "repo": "https://github.com/caddy-dns/netcup" 483 | }, 484 | { 485 | "id": "1f9e7a9f-5094-48f4-8590-7afd25e5f86e", 486 | "path": "github.com/caddy-dns/netlify", 487 | "published": "2022-05-30T09:36:23.686652Z", 488 | "updated": "2022-05-30T09:36:23.686652Z", 489 | "listed": true, 490 | "available": true, 491 | "downloads": 13, 492 | "modules": [ 493 | { 494 | "name": "dns.providers.netlify", 495 | "docs": "dns.providers.netlify wraps the provider implementation as a Caddy module.", 496 | "package": "github.com/caddy-dns/netlify", 497 | "repo": "https://github.com/caddy-dns/netlify" 498 | } 499 | ], 500 | "repo": "https://github.com/caddy-dns/netlify" 501 | }, 502 | { 503 | "id": "835ae185-7d2e-4001-8a1e-1d183a191afe", 504 | "path": "github.com/caddy-dns/openstack-designate", 505 | "published": "2021-01-29T21:14:34.673906Z", 506 | "updated": "2022-01-18T17:25:32.960365Z", 507 | "listed": true, 508 | "available": true, 509 | "downloads": 540, 510 | "modules": [ 511 | { 512 | "name": "dns.providers.openstack-designate", 513 | "docs": "dns.providers.openstack-designate wraps the provider implementation as a Caddy module.", 514 | "package": "github.com/caddy-dns/openstack-designate", 515 | "repo": "https://github.com/caddy-dns/openstack-designate" 516 | } 517 | ], 518 | "repo": "https://github.com/caddy-dns/openstack-designate" 519 | }, 520 | { 521 | "id": "7cdc6c32-a6c4-40f0-93d1-4fb470915528", 522 | "path": "github.com/caddy-dns/route53", 523 | "published": "2020-07-21T17:58:22.862247Z", 524 | "updated": "2020-07-21T17:58:22.862247Z", 525 | "listed": true, 526 | "available": true, 527 | "downloads": 13943, 528 | "modules": [ 529 | { 530 | "name": "dns.providers.route53", 531 | "docs": "dns.providers.route53 wraps the provider implementation as a Caddy module.", 532 | "package": "github.com/caddy-dns/route53", 533 | "repo": "https://github.com/caddy-dns/route53" 534 | } 535 | ], 536 | "repo": "https://github.com/caddy-dns/route53" 537 | }, 538 | { 539 | "id": "a8e7033b-87d5-40e4-ae1a-3c4172464bb0", 540 | "path": "github.com/caddy-dns/vultr", 541 | "published": "2021-01-22T23:59:53.718817Z", 542 | "updated": "2021-01-22T23:59:53.718817Z", 543 | "listed": true, 544 | "available": true, 545 | "downloads": 1656, 546 | "modules": [ 547 | { 548 | "name": "dns.providers.vultr", 549 | "docs": "dns.providers.vultr wraps the provider implementation as a Caddy module.", 550 | "package": "github.com/caddy-dns/vultr", 551 | "repo": "https://github.com/caddy-dns/vultr" 552 | } 553 | ], 554 | "repo": "https://github.com/caddy-dns/vultr" 555 | }, 556 | { 557 | "id": "1dfecd30-df40-41a5-906f-e259a90a70d3", 558 | "path": "github.com/caddyserver/cache-handler", 559 | "published": "2022-02-17T16:47:09.08014Z", 560 | "updated": "2022-02-17T16:47:09.08014Z", 561 | "listed": true, 562 | "available": true, 563 | "downloads": 135, 564 | "modules": [ 565 | { 566 | "name": "http.handlers.cache", 567 | "docs": "http.handlers.cache declaration.", 568 | "package": "github.com/caddyserver/cache-handler", 569 | "repo": "https://github.com/caddyserver/cache-handler" 570 | } 571 | ], 572 | "repo": "https://github.com/caddyserver/cache-handler" 573 | }, 574 | { 575 | "id": "28297034-0bec-46c3-b9d9-00b2e4cb981b", 576 | "path": "github.com/caddyserver/jsonc-adapter", 577 | "published": "2020-07-18T02:11:11.186757Z", 578 | "updated": "2020-07-18T02:11:11.186757Z", 579 | "listed": true, 580 | "available": true, 581 | "downloads": 1711, 582 | "repo": "https://github.com/caddyserver/jsonc-adapter" 583 | }, 584 | { 585 | "id": "cf23f2b7-06d9-4019-a73b-e7997cba224a", 586 | "path": "github.com/caddyserver/nginx-adapter", 587 | "published": "2020-07-18T02:09:55.283092Z", 588 | "updated": "2020-07-18T02:09:55.283092Z", 589 | "listed": true, 590 | "available": true, 591 | "downloads": 2748, 592 | "repo": "https://github.com/caddyserver/nginx-adapter" 593 | }, 594 | { 595 | "id": "54efc42c-13cc-41d9-ae19-61f3114770ee", 596 | "path": "github.com/caddyserver/ntlm-transport", 597 | "published": "2020-07-18T02:20:46.670491Z", 598 | "updated": "2020-07-18T02:20:46.670491Z", 599 | "listed": true, 600 | "available": true, 601 | "downloads": 2651, 602 | "modules": [ 603 | { 604 | "name": "http.reverse_proxy.transport.http_ntlm", 605 | "docs": "http.reverse_proxy.transport.http_ntlm proxies HTTP with NTLM authentication.\nIt basically wraps HTTPTransport so that it is compatible with\nNTLM's HTTP-hostile requirements. Specifically, it will use\nHTTPTransport's single, default *http.Transport for all requests\n(unless the client's connection is already mapped to a different\ntransport) until a request comes in with an Authorization header\nthat has \"NTLM\" or \"Negotiate\"; when that happens, NTLMTransport\nmaps the client's connection (by its address, req.RemoteAddr)\nto a new transport that is used only by that downstream conn.\nWhen the upstream connection is closed, the mapping is deleted.\nThis preserves NTLM authentication contexts by ensuring that\nclient connections use the same upstream connection. It does\nhurt performance a bit, but that's NTLM for you.\n\nThis transport also forces HTTP/1.1 and Keep-Alives in order\nfor NTLM to succeed.\n\nIt is basically the same thing as\n[nginx's paid ntlm directive](https://nginx.org/en/docs/http/ngx_http_upstream_module.html#ntlm)\n(but is free in Caddy!).", 606 | "package": "github.com/caddyserver/ntlm-transport", 607 | "repo": "https://github.com/caddyserver/ntlm-transport" 608 | } 609 | ], 610 | "repo": "https://github.com/caddyserver/ntlm-transport" 611 | }, 612 | { 613 | "id": "093c4864-5c74-4d2d-b75e-9756ba00278d", 614 | "path": "github.com/caddyserver/replace-response", 615 | "published": "2021-05-26T04:55:09.238454Z", 616 | "updated": "2021-05-26T04:55:09.238454Z", 617 | "listed": true, 618 | "available": true, 619 | "downloads": 1226, 620 | "modules": [ 621 | { 622 | "name": "http.handlers.replace_response", 623 | "docs": "http.handlers.replace_response manipulates response bodies by performing\nsubstring or regex replacements.", 624 | "package": "github.com/caddyserver/replace-response", 625 | "repo": "https://github.com/caddyserver/replace-response" 626 | } 627 | ], 628 | "repo": "https://github.com/caddyserver/replace-response" 629 | }, 630 | { 631 | "id": "ecead391-831c-4f52-a99a-0eb403e07c9e", 632 | "path": "github.com/caddyserver/transform-encoder", 633 | "published": "2022-03-21T03:37:47.742685Z", 634 | "updated": "2022-03-21T03:37:47.742685Z", 635 | "listed": true, 636 | "available": true, 637 | "downloads": 375, 638 | "modules": [ 639 | { 640 | "name": "caddy.logging.encoders.formatted", 641 | "package": "github.com/caddyserver/transform-encoder", 642 | "repo": "https://github.com/caddyserver/transform-encoder" 643 | }, 644 | { 645 | "name": "caddy.logging.encoders.transform", 646 | "docs": "caddy.logging.encoders.transform allows the user to provide custom template for log prints. The\nencoder builds atop the json encoder, thus it follows its message structure. The placeholders\nare namespaced by the name of the app logging the message.", 647 | "package": "github.com/caddyserver/transform-encoder", 648 | "repo": "https://github.com/caddyserver/transform-encoder" 649 | } 650 | ], 651 | "repo": "https://github.com/caddyserver/transform-encoder" 652 | }, 653 | { 654 | "id": "5164cb85-a279-4060-a038-88f4c96884e1", 655 | "path": "github.com/casbin/caddy-authz/v2", 656 | "published": "2021-01-31T06:18:44.579441Z", 657 | "updated": "2021-01-31T06:18:44.579441Z", 658 | "listed": true, 659 | "available": true, 660 | "downloads": 1130, 661 | "modules": [ 662 | { 663 | "name": "http.handlers.authz", 664 | "package": "github.com/casbin/caddy-authz/v2", 665 | "repo": "https://github.com/casbin/caddy-authz" 666 | } 667 | ], 668 | "repo": "https://github.com/casbin/caddy-authz" 669 | }, 670 | { 671 | "id": "e52ed331-7a01-40c6-bcd2-a179153d9697", 672 | "path": "github.com/chukmunnlee/caddy-openapi", 673 | "published": "2020-08-27T08:01:11.86175Z", 674 | "updated": "2020-08-27T08:01:11.86175Z", 675 | "listed": true, 676 | "available": true, 677 | "downloads": 1966, 678 | "modules": [ 679 | { 680 | "name": "http.handlers.openapi", 681 | "package": "github.com/chukmunnlee/caddy-openapi", 682 | "repo": "https://github.com/chukmunnlee/caddy-openapi" 683 | } 684 | ], 685 | "repo": "https://github.com/chukmunnlee/caddy-openapi" 686 | }, 687 | { 688 | "id": "55e26373-d03e-4824-a6e3-ddc5fff4b876", 689 | "path": "github.com/circa10a/caddy-geofence", 690 | "published": "2021-11-16T01:30:43.335033Z", 691 | "updated": "2021-11-16T01:30:43.335033Z", 692 | "listed": true, 693 | "available": true, 694 | "downloads": 181, 695 | "modules": [ 696 | { 697 | "name": "http.handlers.geofence", 698 | "docs": "http.handlers.geofence implements IP geofencing functionality. https://github.com/circa10a/caddy-geofence", 699 | "package": "github.com/circa10a/caddy-geofence", 700 | "repo": "https://github.com/circa10a/caddy-geofence" 701 | } 702 | ], 703 | "repo": "https://github.com/circa10a/caddy-geofence" 704 | }, 705 | { 706 | "id": "793797e9-5888-437e-8140-2b1c02fb5af6", 707 | "path": "github.com/cubic3d/caddy-ct", 708 | "published": "2021-08-22T16:16:57.322488Z", 709 | "updated": "2021-08-22T18:14:21.464561Z", 710 | "listed": true, 711 | "available": true, 712 | "downloads": 146, 713 | "modules": [ 714 | { 715 | "name": "http.handlers.ct", 716 | "package": "github.com/cubic3d/caddy-ct", 717 | "repo": "https://github.com/cubic3d/caddy-ct" 718 | } 719 | ], 720 | "repo": "https://github.com/cubic3d/caddy-ct" 721 | }, 722 | { 723 | "id": "38ec39bd-a434-48d7-8005-a1576a64cfcd", 724 | "path": "github.com/cubic3d/caddy-quantity-limiter", 725 | "published": "2021-08-22T23:15:10.366517Z", 726 | "updated": "2021-08-22T23:15:10.366517Z", 727 | "listed": true, 728 | "available": true, 729 | "downloads": 211, 730 | "modules": [ 731 | { 732 | "name": "http.handlers.quantity_limiter", 733 | "docs": "http.handlers.quantity_limiter limits the number of successful requests for a token and allows the counter to be reset.", 734 | "package": "github.com/cubic3d/caddy-quantity-limiter", 735 | "repo": "https://github.com/cubic3d/caddy-quantity-limiter" 736 | } 737 | ], 738 | "repo": "https://github.com/cubic3d/caddy-quantity-limiter" 739 | }, 740 | { 741 | "id": "90def68f-8fe5-4b2d-aa0a-b319ea1b901d", 742 | "path": "github.com/darkweak/souin/plugins/caddy", 743 | "published": "2022-05-14T05:14:48.90841Z", 744 | "updated": "2022-05-14T05:14:48.90841Z", 745 | "listed": true, 746 | "available": true, 747 | "downloads": 17, 748 | "modules": [ 749 | { 750 | "name": "http.handlers.cache", 751 | "docs": "http.handlers.cache allows the user to set up an HTTP cache system, RFC-7234 compliant. This is the development repository of the official cache-handler. It supports the tag based cache purge, distributed and not-distributed storage, key generation tweaking.", 752 | "package": "github.com/darkweak/souin/plugins/caddy", 753 | "repo": "https://github.com/darkweak/souin" 754 | } 755 | ], 756 | "repo": "https://github.com/darkweak/souin" 757 | }, 758 | { 759 | "id": "20925127-9a0c-4b73-8fc9-ece394d54833", 760 | "path": "github.com/dunglas/mercure/caddy", 761 | "published": "2021-01-19T13:05:04.354652Z", 762 | "updated": "2021-01-19T13:05:04.354652Z", 763 | "listed": true, 764 | "available": true, 765 | "downloads": 1196, 766 | "modules": [ 767 | { 768 | "name": "http.handlers.mercure", 769 | "package": "github.com/dunglas/mercure/caddy", 770 | "repo": "https://github.com/dunglas/mercure" 771 | } 772 | ], 773 | "repo": "https://github.com/dunglas/mercure" 774 | }, 775 | { 776 | "id": "f567fc49-b0d5-4340-99a4-e6f02703af65", 777 | "path": "github.com/dunglas/vulcain/caddy", 778 | "published": "2021-01-19T13:05:41.500933Z", 779 | "updated": "2021-01-19T13:05:41.500933Z", 780 | "listed": true, 781 | "available": true, 782 | "downloads": 634, 783 | "modules": [ 784 | { 785 | "name": "http.handlers.vulcain", 786 | "package": "github.com/dunglas/vulcain/caddy", 787 | "repo": "https://github.com/dunglas/vulcain" 788 | } 789 | ], 790 | "repo": "https://github.com/dunglas/vulcain" 791 | }, 792 | { 793 | "id": "bf323b45-b403-48cc-95bc-aff4a121a3d7", 794 | "path": "github.com/firecow/caddy-elastic-encoder", 795 | "published": "2022-02-27T13:14:20.421637Z", 796 | "updated": "2022-02-27T13:14:20.421637Z", 797 | "listed": true, 798 | "available": true, 799 | "downloads": 44, 800 | "modules": [ 801 | { 802 | "name": "caddy.logging.encoders.elastic", 803 | "package": "github.com/firecow/caddy-elastic-encoder", 804 | "repo": "https://github.com/firecow/caddy-elastic-encoder" 805 | } 806 | ], 807 | "repo": "https://github.com/firecow/caddy-elastic-encoder" 808 | }, 809 | { 810 | "id": "715b72e8-a65e-4f08-9254-573369d3dc1f", 811 | "path": "github.com/firecow/caddy-forward-auth", 812 | "published": "2022-02-26T08:08:12.000657Z", 813 | "updated": "2022-02-26T08:08:12.000657Z", 814 | "listed": true, 815 | "available": true, 816 | "downloads": 106, 817 | "modules": [ 818 | { 819 | "name": "http.handlers.forward_auth", 820 | "package": "github.com/firecow/caddy-forward-auth", 821 | "repo": "https://github.com/firecow/caddy-forward-auth" 822 | } 823 | ], 824 | "repo": "https://github.com/firecow/caddy-forward-auth" 825 | }, 826 | { 827 | "id": "677668f7-fd8b-4b2c-94fb-0bb19f01404f", 828 | "path": "github.com/francislavoie/caddy-hcl", 829 | "published": "2020-10-16T03:27:23.90959Z", 830 | "updated": "2020-10-16T03:27:23.90959Z", 831 | "listed": true, 832 | "available": true, 833 | "downloads": 786, 834 | "repo": "https://github.com/francislavoie/caddy-hcl" 835 | }, 836 | { 837 | "id": "9570f9a4-d814-4df5-8bcb-61389e8c3795", 838 | "path": "github.com/gamalan/caddy-tlsredis", 839 | "published": "2020-09-12T12:56:53.496395Z", 840 | "updated": "2020-09-12T12:56:53.496395Z", 841 | "listed": true, 842 | "available": true, 843 | "downloads": 1979, 844 | "modules": [ 845 | { 846 | "name": "caddy.storage.redis", 847 | "docs": "caddy.storage.redis contain Redis client, and plugin option", 848 | "package": "github.com/gamalan/caddy-tlsredis", 849 | "repo": "https://github.com/gamalan/caddy-tlsredis" 850 | } 851 | ], 852 | "repo": "https://github.com/gamalan/caddy-tlsredis" 853 | }, 854 | { 855 | "id": "7e92fbc9-ec05-4146-870b-5783cf274923", 856 | "path": "github.com/gbox-proxy/gbox", 857 | "published": "2022-05-02T17:27:00.291718Z", 858 | "updated": "2022-05-02T17:27:00.291718Z", 859 | "listed": true, 860 | "available": true, 861 | "downloads": 20, 862 | "modules": [ 863 | { 864 | "name": "http.handlers.gbox", 865 | "package": "github.com/gbox-proxy/gbox", 866 | "repo": "https://github.com/gbox-proxy/gbox" 867 | } 868 | ], 869 | "repo": "https://github.com/gbox-proxy/gbox" 870 | }, 871 | { 872 | "id": "f3ac1b47-2640-4209-b379-7debc7af96b0", 873 | "path": "github.com/ggicci/caddy-jwt", 874 | "published": "2021-07-03T13:18:38.952564Z", 875 | "updated": "2021-07-03T13:18:38.952564Z", 876 | "listed": true, 877 | "available": true, 878 | "downloads": 781, 879 | "modules": [ 880 | { 881 | "name": "http.authentication.providers.jwt", 882 | "docs": "http.authentication.providers.jwt facilitates JWT (JSON Web Token) authentication.", 883 | "package": "github.com/ggicci/caddy-jwt", 884 | "repo": "https://github.com/ggicci/caddy-jwt" 885 | } 886 | ], 887 | "repo": "https://github.com/ggicci/caddy-jwt" 888 | }, 889 | { 890 | "id": "97e8348a-8d05-48c6-a0a7-3a04b13d585a", 891 | "path": "github.com/git001/caddyv2-upload", 892 | "published": "2022-05-15T21:34:27.201851Z", 893 | "updated": "2022-05-15T21:34:27.201851Z", 894 | "listed": true, 895 | "available": true, 896 | "downloads": 84, 897 | "modules": [ 898 | { 899 | "name": "http.handlers.upload", 900 | "docs": "Middleware implements an HTTP handler that writes the\nuploaded file to a file on the disk.", 901 | "package": "github.com/git001/caddyv2-upload", 902 | "repo": "https://github.com/git001/caddyv2-upload" 903 | } 904 | ], 905 | "repo": "https://github.com/git001/caddyv2-upload" 906 | }, 907 | { 908 | "id": "1c17dc52-8b56-48b0-a9b6-e7d70350199e", 909 | "path": "github.com/greenpau/caddy-git", 910 | "published": "2022-01-13T13:34:54.966946Z", 911 | "updated": "2022-01-13T13:34:54.966946Z", 912 | "listed": true, 913 | "available": true, 914 | "downloads": 409, 915 | "modules": [ 916 | { 917 | "name": "http.handlers.git", 918 | "docs": "http.handlers.git implements git repository manager.", 919 | "package": "github.com/greenpau/caddy-git", 920 | "repo": "https://github.com/greenpau/caddy-git" 921 | } 922 | ], 923 | "repo": "https://github.com/greenpau/caddy-git" 924 | }, 925 | { 926 | "id": "1fab5617-a93f-4617-b886-cfc8e44253ae", 927 | "path": "github.com/greenpau/caddy-security", 928 | "published": "2022-01-24T23:25:50.010346Z", 929 | "updated": "2022-01-24T23:25:50.010346Z", 930 | "listed": true, 931 | "available": true, 932 | "downloads": 2878, 933 | "modules": [ 934 | { 935 | "name": "http.authentication.providers.authorizer", 936 | "docs": "http.authentication.providers.authorizer authorizes access to endpoints based on\nthe presense and content of JWT token.", 937 | "package": "github.com/greenpau/caddy-security", 938 | "repo": "https://github.com/greenpau/caddy-security" 939 | }, 940 | { 941 | "name": "http.handlers.authenticator", 942 | "docs": "http.handlers.authenticator implements Form-Based, Basic, Local, LDAP,\nOpenID Connect, OAuth 2.0, SAML Authentication.", 943 | "package": "github.com/greenpau/caddy-security", 944 | "repo": "https://github.com/greenpau/caddy-security" 945 | }, 946 | { 947 | "name": "security", 948 | "docs": "security implements security manager.", 949 | "package": "github.com/greenpau/caddy-security", 950 | "repo": "https://github.com/greenpau/caddy-security" 951 | } 952 | ], 953 | "repo": "https://github.com/greenpau/caddy-security" 954 | }, 955 | { 956 | "id": "d868a804-2a61-4e0c-b93c-45810fde7581", 957 | "path": "github.com/greenpau/caddy-trace", 958 | "published": "2020-09-18T17:44:54.349455Z", 959 | "updated": "2020-09-18T17:44:54.349455Z", 960 | "listed": true, 961 | "available": true, 962 | "downloads": 6273, 963 | "modules": [ 964 | { 965 | "name": "http.handlers.trace", 966 | "docs": "http.handlers.trace is a middleware which displays the content of the request it\nhandles. It helps troubleshooting web requests by exposing headers\n(e.g. cookies), URL parameters, etc.", 967 | "package": "github.com/greenpau/caddy-trace", 968 | "repo": "https://github.com/greenpau/caddy-trace" 969 | } 970 | ], 971 | "repo": "https://github.com/greenpau/caddy-trace" 972 | }, 973 | { 974 | "id": "218eb8bf-f295-4344-b33a-07ff70191910", 975 | "path": "github.com/hairyhenderson/caddy-teapot-module", 976 | "published": "2020-07-20T23:24:16.574918Z", 977 | "updated": "2020-07-20T23:24:16.574918Z", 978 | "listed": true, 979 | "available": true, 980 | "downloads": 1776, 981 | "modules": [ 982 | { 983 | "name": "http.handlers.teapot", 984 | "docs": "http.handlers.teapot implements a static \"418 I'm a teapot\" response to all requests on the route", 985 | "package": "github.com/hairyhenderson/caddy-teapot-module", 986 | "repo": "https://github.com/hairyhenderson/caddy-teapot-module" 987 | } 988 | ], 989 | "repo": "https://github.com/hairyhenderson/caddy-teapot-module" 990 | }, 991 | { 992 | "id": "0f043b8d-c369-469c-be0d-00369867ed7a", 993 | "path": "github.com/hslatman/caddy-crowdsec-bouncer", 994 | "published": "2021-08-05T21:53:03.781244Z", 995 | "updated": "2021-08-05T21:53:03.781244Z", 996 | "listed": true, 997 | "available": true, 998 | "downloads": 329, 999 | "modules": [ 1000 | { 1001 | "name": "crowdsec", 1002 | "docs": "crowdsec is a Caddy App that functions as a CrowdSec bouncer. It acts\nas a CrowdSec API client as well as a local cache for CrowdSec decisions,\nwhich can be used by the HTTP handler and Layer4 matcher to decide if\na request or connection is allowed or not.", 1003 | "package": "github.com/hslatman/caddy-crowdsec-bouncer/crowdsec", 1004 | "repo": "https://github.com/hslatman/caddy-crowdsec-bouncer" 1005 | }, 1006 | { 1007 | "name": "http.handlers.crowdsec", 1008 | "docs": "http.handlers.crowdsec matches request IPs to CrowdSec decisions to (dis)allow access", 1009 | "package": "github.com/hslatman/caddy-crowdsec-bouncer/http", 1010 | "repo": "https://github.com/hslatman/caddy-crowdsec-bouncer" 1011 | }, 1012 | { 1013 | "name": "layer4.matchers.crowdsec", 1014 | "docs": "layer4.matchers.crowdsec matches IPs to CrowdSec decisions to (dis)allow access", 1015 | "package": "github.com/hslatman/caddy-crowdsec-bouncer/layer4", 1016 | "repo": "https://github.com/hslatman/caddy-crowdsec-bouncer" 1017 | } 1018 | ], 1019 | "repo": "https://github.com/hslatman/caddy-crowdsec-bouncer" 1020 | }, 1021 | { 1022 | "id": "6983bd2d-bc88-48d0-b0ba-30c63e895bf5", 1023 | "path": "github.com/hslatman/caddy-openapi-validator", 1024 | "published": "2020-08-30T22:04:13.851115Z", 1025 | "updated": "2020-08-30T22:04:13.851115Z", 1026 | "listed": true, 1027 | "available": true, 1028 | "downloads": 1402, 1029 | "modules": [ 1030 | { 1031 | "name": "http.handlers.openapi_validator", 1032 | "docs": "http.handlers.openapi_validator is used to validate OpenAPI requests and responses against an OpenAPI specification", 1033 | "package": "github.com/hslatman/caddy-openapi-validator", 1034 | "repo": "https://github.com/hslatman/caddy-openapi-validator" 1035 | } 1036 | ], 1037 | "repo": "https://github.com/hslatman/caddy-openapi-validator" 1038 | }, 1039 | { 1040 | "id": "80984e2a-607e-4344-8f8f-9d25367d402a", 1041 | "path": "github.com/imgk/caddy-trojan", 1042 | "published": "2022-05-19T12:29:12.116619Z", 1043 | "updated": "2022-05-19T12:29:12.116619Z", 1044 | "listed": true, 1045 | "available": true, 1046 | "downloads": 52, 1047 | "modules": [ 1048 | { 1049 | "name": "admin.api.trojan", 1050 | "docs": "admin.api.trojan is ...", 1051 | "package": "github.com/imgk/caddy-trojan/admin", 1052 | "repo": "https://github.com/imgk/caddy-trojan" 1053 | }, 1054 | { 1055 | "name": "caddy.listeners.trojan", 1056 | "docs": "caddy.listeners.trojan implements an TLS wrapper that it accept connections\nfrom clients and check the connection with pre-defined password\nand aead cipher defined by go-shadowsocks2, and return a normal page if\nfailed.", 1057 | "package": "github.com/imgk/caddy-trojan/listener", 1058 | "repo": "https://github.com/imgk/caddy-trojan" 1059 | }, 1060 | { 1061 | "name": "http.handlers.trojan", 1062 | "docs": "http.handlers.trojan implements an HTTP handler that ...", 1063 | "package": "github.com/imgk/caddy-trojan/handler", 1064 | "repo": "https://github.com/imgk/caddy-trojan" 1065 | }, 1066 | { 1067 | "name": "trojan.proxies.env_proxy", 1068 | "docs": "trojan.proxies.env_proxy is ...", 1069 | "package": "github.com/imgk/caddy-trojan/app", 1070 | "repo": "https://github.com/imgk/caddy-trojan" 1071 | }, 1072 | { 1073 | "name": "trojan.proxies.no_proxy", 1074 | "docs": "trojan.proxies.no_proxy is ...", 1075 | "package": "github.com/imgk/caddy-trojan/app", 1076 | "repo": "https://github.com/imgk/caddy-trojan" 1077 | }, 1078 | { 1079 | "name": "trojan.upstreams.caddy", 1080 | "docs": "trojan.upstreams.caddy is ...", 1081 | "package": "github.com/imgk/caddy-trojan/app", 1082 | "repo": "https://github.com/imgk/caddy-trojan" 1083 | }, 1084 | { 1085 | "name": "trojan.upstreams.memory", 1086 | "docs": "trojan.upstreams.memory is ...", 1087 | "package": "github.com/imgk/caddy-trojan/app", 1088 | "repo": "https://github.com/imgk/caddy-trojan" 1089 | } 1090 | ], 1091 | "repo": "https://github.com/imgk/caddy-trojan" 1092 | }, 1093 | { 1094 | "id": "3c3e0ed6-eeba-4fc3-9ee1-afca1b622e27", 1095 | "path": "github.com/kirsch33/realip", 1096 | "published": "2020-12-23T17:02:57.017227Z", 1097 | "updated": "2020-12-23T17:02:57.017227Z", 1098 | "listed": true, 1099 | "available": true, 1100 | "downloads": 3082, 1101 | "modules": [ 1102 | { 1103 | "name": "http.handlers.realip", 1104 | "package": "github.com/kirsch33/realip", 1105 | "repo": "https://github.com/kirsch33/realip" 1106 | } 1107 | ], 1108 | "repo": "https://github.com/kirsch33/realip" 1109 | }, 1110 | { 1111 | "id": "24a0db8d-383c-4e7a-a14f-3b028db90808", 1112 | "path": "github.com/lindenlab/caddy-s3-proxy", 1113 | "published": "2020-12-18T08:21:45.278112Z", 1114 | "updated": "2020-12-18T08:21:45.278112Z", 1115 | "listed": true, 1116 | "available": true, 1117 | "downloads": 1291, 1118 | "modules": [ 1119 | { 1120 | "name": "http.handlers.s3proxy", 1121 | "docs": "http.handlers.s3proxy implements a proxy to return, set, delete or browse objects from S3", 1122 | "package": "github.com/lindenlab/caddy-s3-proxy", 1123 | "repo": "https://github.com/lindenlab/caddy-s3-proxy" 1124 | } 1125 | ], 1126 | "repo": "https://github.com/lindenlab/caddy-s3-proxy" 1127 | }, 1128 | { 1129 | "id": "f7db3ff2-7c6a-4bef-aa3b-bd9e5c92cade", 1130 | "path": "github.com/lolPants/caddy-requestid", 1131 | "published": "2020-07-28T18:04:55.450897Z", 1132 | "updated": "2020-07-28T18:04:55.450897Z", 1133 | "listed": true, 1134 | "available": true, 1135 | "downloads": 2496, 1136 | "modules": [ 1137 | { 1138 | "name": "http.handlers.request_id", 1139 | "docs": "http.handlers.request_id implements an HTTP handler that writes a\nunique request ID to response headers.", 1140 | "package": "github.com/lolPants/caddy-requestid", 1141 | "repo": "https://github.com/lolPants/caddy-requestid" 1142 | } 1143 | ], 1144 | "repo": "https://github.com/lolPants/caddy-requestid" 1145 | }, 1146 | { 1147 | "id": "d16d42fb-d7cd-4d16-bfbf-21ca6db9ae88", 1148 | "path": "github.com/lucaslorentz/caddy-docker-proxy/plugin/v2", 1149 | "published": "2020-08-10T18:21:09.388867Z", 1150 | "updated": "2020-08-10T18:21:09.388867Z", 1151 | "listed": true, 1152 | "available": true, 1153 | "downloads": 1617, 1154 | "repo": "https://github.com/lucaslorentz/caddy-docker-proxy" 1155 | }, 1156 | { 1157 | "id": "cae8ce32-6e4c-4a26-ae98-e5bc33cfd0a1", 1158 | "path": "github.com/mastercactapus/caddy2-proxyprotocol", 1159 | "published": "2020-09-23T22:26:56.705089Z", 1160 | "updated": "2020-09-23T22:26:56.705089Z", 1161 | "listed": true, 1162 | "available": true, 1163 | "downloads": 3246, 1164 | "modules": [ 1165 | { 1166 | "name": "caddy.listeners.proxy_protocol", 1167 | "package": "github.com/mastercactapus/caddy2-proxyprotocol", 1168 | "repo": "https://github.com/mastercactapus/caddy2-proxyprotocol" 1169 | } 1170 | ], 1171 | "repo": "https://github.com/mastercactapus/caddy2-proxyprotocol" 1172 | }, 1173 | { 1174 | "id": "8ea7c943-1fcc-404d-8c62-a792d298dc03", 1175 | "path": "github.com/mholt/caddy-dynamicdns", 1176 | "published": "2021-05-25T22:35:03.786153Z", 1177 | "updated": "2021-05-25T22:35:03.786153Z", 1178 | "listed": true, 1179 | "available": true, 1180 | "downloads": 1143, 1181 | "modules": [ 1182 | { 1183 | "name": "dynamic_dns", 1184 | "docs": "dynamic_dns is a Caddy app that keeps your DNS records updated with the public\nIP address of your instance. It updates A and AAAA records.", 1185 | "package": "github.com/mholt/caddy-dynamicdns", 1186 | "repo": "https://github.com/mholt/caddy-dynamicdns" 1187 | }, 1188 | { 1189 | "name": "dynamic_dns.ip_sources.simple_http", 1190 | "docs": "dynamic_dns.ip_sources.simple_http is an IP source that looks up the public IP addresses by\nmaking HTTP(S) requests to the specified endpoints; it will try each\nendpoint with IPv4 and IPv6 until at least one returns a valid value.\nIt is OK if an endpoint doesn't support both IP versions; returning\na single valid IP address is sufficient.\n\nThe endpoints must return HTTP status 200 and the response body must\ncontain only the IP address in plain text.", 1191 | "package": "github.com/mholt/caddy-dynamicdns", 1192 | "repo": "https://github.com/mholt/caddy-dynamicdns" 1193 | }, 1194 | { 1195 | "name": "dynamic_dns.ip_sources.upnp", 1196 | "docs": "dynamic_dns.ip_sources.upnp gets the IP address from UPnP device.", 1197 | "package": "github.com/mholt/caddy-dynamicdns", 1198 | "repo": "https://github.com/mholt/caddy-dynamicdns" 1199 | } 1200 | ], 1201 | "repo": "https://github.com/mholt/caddy-dynamicdns" 1202 | }, 1203 | { 1204 | "id": "df350215-52dc-4fc9-89ec-001b9ef54d5a", 1205 | "path": "github.com/mholt/caddy-l4", 1206 | "published": "2021-05-25T22:35:46.90086Z", 1207 | "updated": "2021-05-25T22:35:46.90086Z", 1208 | "listed": true, 1209 | "available": true, 1210 | "downloads": 2347, 1211 | "modules": [ 1212 | { 1213 | "name": "layer4", 1214 | "docs": "layer4 is a Caddy app that operates closest to layer 4 of the OSI model.", 1215 | "package": "github.com/mholt/caddy-l4/layer4", 1216 | "repo": "https://github.com/mholt/caddy-l4" 1217 | }, 1218 | { 1219 | "name": "layer4.handlers.echo", 1220 | "docs": "layer4.handlers.echo is a simple handler that writes what it reads.", 1221 | "package": "github.com/mholt/caddy-l4/modules/l4echo", 1222 | "repo": "https://github.com/mholt/caddy-l4" 1223 | }, 1224 | { 1225 | "name": "layer4.handlers.proxy", 1226 | "docs": "layer4.handlers.proxy is a handler that can proxy connections.", 1227 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1228 | "repo": "https://github.com/mholt/caddy-l4" 1229 | }, 1230 | { 1231 | "name": "layer4.handlers.proxy_protocol", 1232 | "docs": "layer4.handlers.proxy_protocol is a connection handler that accepts the PROXY protocol.", 1233 | "package": "github.com/mholt/caddy-l4/modules/l4proxyprotocol", 1234 | "repo": "https://github.com/mholt/caddy-l4" 1235 | }, 1236 | { 1237 | "name": "layer4.handlers.tee", 1238 | "docs": "layer4.handlers.tee is a layer4 handler that replicates a connection so\nthat a branch of handlers can concurrently handle it. Reads\nhappen in lock-step with all concurrent branches so as to\navoid buffering: if one of the branches (including the main\nhandler chain) stops reading from the connection, it will\nblock all branches.", 1239 | "package": "github.com/mholt/caddy-l4/modules/l4tee", 1240 | "repo": "https://github.com/mholt/caddy-l4" 1241 | }, 1242 | { 1243 | "name": "layer4.handlers.throttle", 1244 | "docs": "layer4.handlers.throttle throttles connections using leaky bucket rate limiting.", 1245 | "package": "github.com/mholt/caddy-l4/modules/l4throttle", 1246 | "repo": "https://github.com/mholt/caddy-l4" 1247 | }, 1248 | { 1249 | "name": "layer4.handlers.tls", 1250 | "docs": "layer4.handlers.tls is a connection handler that terminates TLS.", 1251 | "package": "github.com/mholt/caddy-l4/modules/l4tls", 1252 | "repo": "https://github.com/mholt/caddy-l4" 1253 | }, 1254 | { 1255 | "name": "layer4.matchers.http", 1256 | "docs": "layer4.matchers.http is able to match HTTP connections. The auto-generated\ndocumentation for this type is wrong; instead of an object, it\nis an array of matcher set objects.", 1257 | "package": "github.com/mholt/caddy-l4/modules/l4http", 1258 | "repo": "https://github.com/mholt/caddy-l4" 1259 | }, 1260 | { 1261 | "name": "layer4.matchers.ip", 1262 | "docs": "layer4.matchers.ip matches requests by remote IP (or CIDR range).", 1263 | "package": "github.com/mholt/caddy-l4/layer4", 1264 | "repo": "https://github.com/mholt/caddy-l4" 1265 | }, 1266 | { 1267 | "name": "layer4.matchers.proxy_protocol", 1268 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1269 | "repo": "https://github.com/mholt/caddy-l4" 1270 | }, 1271 | { 1272 | "name": "layer4.matchers.ssh", 1273 | "docs": "layer4.matchers.ssh is able to match SSH connections.", 1274 | "package": "github.com/mholt/caddy-l4/modules/l4ssh", 1275 | "repo": "https://github.com/mholt/caddy-l4" 1276 | }, 1277 | { 1278 | "name": "layer4.matchers.tls", 1279 | "docs": "layer4.matchers.tls is able to match TLS connections. Its structure\nis different from the auto-generated documentation. This\nvalue should be a map of matcher names to their values.", 1280 | "package": "github.com/mholt/caddy-l4/modules/l4tls", 1281 | "repo": "https://github.com/mholt/caddy-l4" 1282 | }, 1283 | { 1284 | "name": "layer4.matchers.xmpp", 1285 | "docs": "layer4.matchers.xmpp is able to match XMPP connections.", 1286 | "package": "github.com/mholt/caddy-l4/modules/l4xmpp", 1287 | "repo": "https://github.com/mholt/caddy-l4" 1288 | }, 1289 | { 1290 | "name": "layer4.proxy.selection_policies.first", 1291 | "docs": "layer4.proxy.selection_policies.first is a policy that selects\nthe first available host.", 1292 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1293 | "repo": "https://github.com/mholt/caddy-l4" 1294 | }, 1295 | { 1296 | "name": "layer4.proxy.selection_policies.ip_hash", 1297 | "docs": "layer4.proxy.selection_policies.ip_hash is a policy that selects a host\nbased on hashing the remote IP of the connection.", 1298 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1299 | "repo": "https://github.com/mholt/caddy-l4" 1300 | }, 1301 | { 1302 | "name": "layer4.proxy.selection_policies.least_conn", 1303 | "docs": "layer4.proxy.selection_policies.least_conn is a policy that selects the upstream\nwith the least active connections. If multiple upstreams\nhave the same fewest number, one is chosen randomly.", 1304 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1305 | "repo": "https://github.com/mholt/caddy-l4" 1306 | }, 1307 | { 1308 | "name": "layer4.proxy.selection_policies.random", 1309 | "docs": "layer4.proxy.selection_policies.random is a policy that selects\nan available host at random.", 1310 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1311 | "repo": "https://github.com/mholt/caddy-l4" 1312 | }, 1313 | { 1314 | "name": "layer4.proxy.selection_policies.random_choose", 1315 | "docs": "layer4.proxy.selection_policies.random_choose is a policy that selects\ntwo or more available hosts at random, then\nchooses the one with the least load.", 1316 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1317 | "repo": "https://github.com/mholt/caddy-l4" 1318 | }, 1319 | { 1320 | "name": "layer4.proxy.selection_policies.round_robin", 1321 | "docs": "layer4.proxy.selection_policies.round_robin is a policy that selects\na host based on round-robin ordering.", 1322 | "package": "github.com/mholt/caddy-l4/modules/l4proxy", 1323 | "repo": "https://github.com/mholt/caddy-l4" 1324 | }, 1325 | { 1326 | "name": "tls.handshake_match.alpn", 1327 | "package": "github.com/mholt/caddy-l4/modules/l4tls", 1328 | "repo": "https://github.com/mholt/caddy-l4" 1329 | } 1330 | ], 1331 | "repo": "https://github.com/mholt/caddy-l4" 1332 | }, 1333 | { 1334 | "id": "eb4702f5-f445-4a07-b1ca-5bf2828db3d1", 1335 | "path": "github.com/mholt/caddy-ratelimit", 1336 | "published": "2021-05-26T04:56:00.069639Z", 1337 | "updated": "2021-05-26T04:56:00.069639Z", 1338 | "listed": true, 1339 | "available": true, 1340 | "downloads": 740, 1341 | "modules": [ 1342 | { 1343 | "name": "http.handlers.rate_limit", 1344 | "docs": "http.handlers.rate_limit implements rate limiting functionality.\n\nIf a rate limit is exceeded, an HTTP error with status 429 will be\nreturned. This error can be handled using the conventional error\nhandling routes in your config. An additional placeholder is made\navailable, called `{http.rate_limit.exceeded.name}`, which you can\nuse for logging or handling; it contains the name of the rate limit\nzone which limit was exceeded.", 1345 | "package": "github.com/mholt/caddy-ratelimit", 1346 | "repo": "https://github.com/mholt/caddy-ratelimit" 1347 | } 1348 | ], 1349 | "repo": "https://github.com/mholt/caddy-ratelimit" 1350 | }, 1351 | { 1352 | "id": "6cf95a9b-5f64-4ee6-909c-b8695e685765", 1353 | "path": "github.com/mholt/caddy-webdav", 1354 | "published": "2020-07-18T02:04:43.667911Z", 1355 | "updated": "2020-07-18T02:04:43.667911Z", 1356 | "listed": true, 1357 | "available": true, 1358 | "downloads": 15542, 1359 | "modules": [ 1360 | { 1361 | "name": "http.handlers.webdav", 1362 | "docs": "http.handlers.webdav implements an HTTP handler for responding to WebDAV clients.", 1363 | "package": "github.com/mholt/caddy-webdav", 1364 | "repo": "https://github.com/mholt/caddy-webdav" 1365 | } 1366 | ], 1367 | "repo": "https://github.com/mholt/caddy-webdav" 1368 | }, 1369 | { 1370 | "id": "3e0d52e3-23c4-4a82-ba2b-654bf3a50618", 1371 | "path": "github.com/mohammed90/caddy-ssh", 1372 | "published": "2022-03-28T23:06:40.306807Z", 1373 | "updated": "2022-03-28T23:06:40.306807Z", 1374 | "listed": true, 1375 | "available": true, 1376 | "downloads": 168, 1377 | "modules": [ 1378 | { 1379 | "name": "ssh", 1380 | "docs": "ssh is the app providing ssh services", 1381 | "package": "github.com/mohammed90/caddy-ssh/internal", 1382 | "repo": "https://github.com/mohammed90/caddy-ssh" 1383 | }, 1384 | { 1385 | "name": "ssh.actor_matchers.critical_option", 1386 | "docs": "ssh.actor_matchers.critical_option matches request by the value of critical-option of the certificate/user", 1387 | "package": "github.com/mohammed90/caddy-ssh/internal", 1388 | "repo": "https://github.com/mohammed90/caddy-ssh" 1389 | }, 1390 | { 1391 | "name": "ssh.actor_matchers.extension", 1392 | "docs": "ssh.actor_matchers.extension matches request by SSH protocol extension", 1393 | "package": "github.com/mohammed90/caddy-ssh/internal", 1394 | "repo": "https://github.com/mohammed90/caddy-ssh" 1395 | }, 1396 | { 1397 | "name": "ssh.actor_matchers.group", 1398 | "docs": "ssh.actor_matchers.group matches requests by user's group", 1399 | "package": "github.com/mohammed90/caddy-ssh/internal", 1400 | "repo": "https://github.com/mohammed90/caddy-ssh" 1401 | }, 1402 | { 1403 | "name": "ssh.actor_matchers.not", 1404 | "docs": "ssh.actor_matchers.not matches requests by negating the results of its matcher\nsets. A single \"not\" matcher takes one or more matcher sets. Each\nmatcher set is OR'ed; in other words, if any matcher set returns\ntrue, the final result of the \"not\" matcher is false. Individual\nmatchers within a set work the same (i.e. different matchers in\nthe same set are AND'ed).\n\nNOTE: The generated docs which describe the structure of this\nmodule are wrong because of how this type unmarshals JSON in a\ncustom way. The correct structure is:\n\n```json\n[\n\t{},\n\t{}\n]\n```\n\nwhere each of the array elements is a matcher set, i.e. an\nobject keyed by matcher name.", 1405 | "package": "github.com/mohammed90/caddy-ssh/internal", 1406 | "repo": "https://github.com/mohammed90/caddy-ssh" 1407 | }, 1408 | { 1409 | "name": "ssh.actor_matchers.remote_ip", 1410 | "docs": "ssh.actor_matchers.remote_ip matches requests by client IP (or CIDR range).", 1411 | "package": "github.com/mohammed90/caddy-ssh/internal", 1412 | "repo": "https://github.com/mohammed90/caddy-ssh" 1413 | }, 1414 | { 1415 | "name": "ssh.actor_matchers.user", 1416 | "docs": "ssh.actor_matchers.user matches requests by username", 1417 | "package": "github.com/mohammed90/caddy-ssh/internal", 1418 | "repo": "https://github.com/mohammed90/caddy-ssh" 1419 | }, 1420 | { 1421 | "name": "ssh.actors.shell", 1422 | "docs": "ssh.actors.shell is an `ssh.actors` module providing \"shell\" to a session.", 1423 | "package": "github.com/mohammed90/caddy-ssh/internal/pty", 1424 | "repo": "https://github.com/mohammed90/caddy-ssh" 1425 | }, 1426 | { 1427 | "name": "ssh.actors.static_response", 1428 | "docs": "ssh.actors.static_response is an actor that writes a static value to the client", 1429 | "package": "github.com/mohammed90/caddy-ssh/internal/actors", 1430 | "repo": "https://github.com/mohammed90/caddy-ssh" 1431 | }, 1432 | { 1433 | "name": "ssh.ask.localforward.allow", 1434 | "docs": "ssh.ask.localforward.allow is PortForwardingAsker module which always allows the session", 1435 | "package": "github.com/mohammed90/caddy-ssh/internal/localforward", 1436 | "repo": "https://github.com/mohammed90/caddy-ssh" 1437 | }, 1438 | { 1439 | "name": "ssh.ask.localforward.deny", 1440 | "docs": "Allow is PortForwardingAsker module which always rejects the session", 1441 | "package": "github.com/mohammed90/caddy-ssh/internal/localforward", 1442 | "repo": "https://github.com/mohammed90/caddy-ssh" 1443 | }, 1444 | { 1445 | "name": "ssh.ask.pty.allow", 1446 | "docs": "ssh.ask.pty.allow is PtyAsker module which always allows the PTY session", 1447 | "package": "github.com/mohammed90/caddy-ssh/internal/pty", 1448 | "repo": "https://github.com/mohammed90/caddy-ssh" 1449 | }, 1450 | { 1451 | "name": "ssh.ask.pty.deny", 1452 | "docs": "Allow is PtyAsker module which always rejects the PTY session", 1453 | "package": "github.com/mohammed90/caddy-ssh/internal/pty", 1454 | "repo": "https://github.com/mohammed90/caddy-ssh" 1455 | }, 1456 | { 1457 | "name": "ssh.ask.reverseforward.allow", 1458 | "package": "github.com/mohammed90/caddy-ssh/internal/reverseforward", 1459 | "repo": "https://github.com/mohammed90/caddy-ssh" 1460 | }, 1461 | { 1462 | "name": "ssh.ask.reverseforward.deny", 1463 | "package": "github.com/mohammed90/caddy-ssh/internal/reverseforward", 1464 | "repo": "https://github.com/mohammed90/caddy-ssh" 1465 | }, 1466 | { 1467 | "name": "ssh.authentication.flows.interactive", 1468 | "docs": "ssh.authentication.flows.interactive holds the interactive authentication providers", 1469 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication", 1470 | "repo": "https://github.com/mohammed90/caddy-ssh" 1471 | }, 1472 | { 1473 | "name": "ssh.authentication.flows.password_auth", 1474 | "docs": "// PasswordAuthFlow holds the password-based authentication providers", 1475 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication", 1476 | "repo": "https://github.com/mohammed90/caddy-ssh" 1477 | }, 1478 | { 1479 | "name": "ssh.authentication.flows.public_key", 1480 | "docs": "ssh.authentication.flows.public_key holds the public key authentication providers", 1481 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication", 1482 | "repo": "https://github.com/mohammed90/caddy-ssh" 1483 | }, 1484 | { 1485 | "name": "ssh.authentication.providers.password.static", 1486 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication/static", 1487 | "repo": "https://github.com/mohammed90/caddy-ssh" 1488 | }, 1489 | { 1490 | "name": "ssh.authentication.providers.public_key.os", 1491 | "docs": "ssh.authentication.providers.public_key.os is an authenticator that authenticates the user based on the `.ssh/authorized_keys` in\nthe user's $HOME", 1492 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication/os", 1493 | "repo": "https://github.com/mohammed90/caddy-ssh" 1494 | }, 1495 | { 1496 | "name": "ssh.authentication.providers.public_key.static", 1497 | "package": "github.com/mohammed90/caddy-ssh/internal/authentication/static", 1498 | "repo": "https://github.com/mohammed90/caddy-ssh" 1499 | }, 1500 | { 1501 | "name": "ssh.config.loaders.provided", 1502 | "docs": "Lifted and merged from golang.org/x/crypto/ssh\nProvidedConfig holds server specific configuration data.", 1503 | "package": "github.com/mohammed90/caddy-ssh/internal", 1504 | "repo": "https://github.com/mohammed90/caddy-ssh" 1505 | }, 1506 | { 1507 | "name": "ssh.config_matchers.local_ip", 1508 | "docs": "ssh.config_matchers.local_ip matches requests by local IP (or CIDR range).", 1509 | "package": "github.com/mohammed90/caddy-ssh/internal", 1510 | "repo": "https://github.com/mohammed90/caddy-ssh" 1511 | }, 1512 | { 1513 | "name": "ssh.config_matchers.not", 1514 | "docs": "ssh.config_matchers.not matches requests by negating the results of its matcher\nsets. A single \"not\" matcher takes one or more matcher sets. Each\nmatcher set is OR'ed; in other words, if any matcher set returns\ntrue, the final result of the \"not\" matcher is false. Individual\nmatchers within a set work the same (i.e. different matchers in\nthe same set are AND'ed).\n\nNOTE: The generated docs which describe the structure of this\nmodule are wrong because of how this type unmarshals JSON in a\ncustom way. The correct structure is:\n\n```json\n[\n\t{},\n\t{}\n]\n```\n\nwhere each of the array elements is a matcher set, i.e. an\nobject keyed by matcher name.", 1515 | "package": "github.com/mohammed90/caddy-ssh/internal", 1516 | "repo": "https://github.com/mohammed90/caddy-ssh" 1517 | }, 1518 | { 1519 | "name": "ssh.config_matchers.remote_ip", 1520 | "docs": "ssh.config_matchers.remote_ip matches requests by client IP (or CIDR range).", 1521 | "package": "github.com/mohammed90/caddy-ssh/internal", 1522 | "repo": "https://github.com/mohammed90/caddy-ssh" 1523 | }, 1524 | { 1525 | "name": "ssh.session.authorizers.chained", 1526 | "docs": "ssh.session.authorizers.chained is a multi-authorizer module that authorizes a session against multiple authorizers", 1527 | "package": "github.com/mohammed90/caddy-ssh/internal/authorization", 1528 | "repo": "https://github.com/mohammed90/caddy-ssh" 1529 | }, 1530 | { 1531 | "name": "ssh.session.authorizers.max_session", 1532 | "docs": "ssh.session.authorizers.max_session is an authorizer that permits sessions so long as the\nnumber of active sessions is below the specified maximum.", 1533 | "package": "github.com/mohammed90/caddy-ssh/internal/authorization", 1534 | "repo": "https://github.com/mohammed90/caddy-ssh" 1535 | }, 1536 | { 1537 | "name": "ssh.session.authorizers.public", 1538 | "docs": "ssh.session.authorizers.public authorizes all sessions", 1539 | "package": "github.com/mohammed90/caddy-ssh/internal/authorization", 1540 | "repo": "https://github.com/mohammed90/caddy-ssh" 1541 | }, 1542 | { 1543 | "name": "ssh.session.authorizers.reject", 1544 | "docs": "ssh.session.authorizers.reject rejects all sessions", 1545 | "package": "github.com/mohammed90/caddy-ssh/internal/authorization", 1546 | "repo": "https://github.com/mohammed90/caddy-ssh" 1547 | }, 1548 | { 1549 | "name": "ssh.signers.fallback", 1550 | "docs": "ssh.signers.fallback will check if the signers exist in the storage, otherwise generate them. It is\nthe default signer.", 1551 | "package": "github.com/mohammed90/caddy-ssh/internal/signer", 1552 | "repo": "https://github.com/mohammed90/caddy-ssh" 1553 | }, 1554 | { 1555 | "name": "ssh.signers.file", 1556 | "docs": "ssh.signers.file is a session signer that uses pre-existing keys, which may be backed\nas files or retrievable via HTTP", 1557 | "package": "github.com/mohammed90/caddy-ssh/internal/signer", 1558 | "repo": "https://github.com/mohammed90/caddy-ssh" 1559 | }, 1560 | { 1561 | "name": "ssh.subsystem.inmem_sftp", 1562 | "docs": "ssh.subsystem.inmem_sftp is an in-memory SFTP server allowing shared space\nbetween all users. It starts with an empty space.\nWarning: For illustration purposes only!", 1563 | "package": "github.com/mohammed90/caddy-ssh/internal/subsystem", 1564 | "repo": "https://github.com/mohammed90/caddy-ssh" 1565 | } 1566 | ], 1567 | "repo": "https://github.com/mohammed90/caddy-ssh" 1568 | }, 1569 | { 1570 | "id": "fa259b7a-9cf1-4f8f-8972-ac2e3a3cf45c", 1571 | "path": "github.com/mpilhlt/caddy-conneg", 1572 | "published": "2022-05-13T07:19:48.509911Z", 1573 | "updated": "2022-05-13T07:19:48.509911Z", 1574 | "listed": true, 1575 | "available": true, 1576 | "downloads": 15, 1577 | "modules": [ 1578 | { 1579 | "name": "http.matchers.conneg", 1580 | "docs": "http.matchers.conneg matches requests by comparing results of a\ncontent negotiation process to a (list of) values.\n\nLists of media types, languages, charsets, and encodings to match\nthe request against can be given - and at least one of them MUST\nbe specified.\nOPTIONAL parameters are a strings for identifying URL query string\nparameter keys that allow requests to override/skip the connection\nnegotiation process and force a media type, a language, a charset\nor an encoding (all defaulting to '').\nThe values of query string parameter values corresponding to full\nmedia types (languages, encodings, etc.) are hardcoded in a\nvariable called `aliases` below\n\nCOMPATIBILITY NOTE: This module is still experimental and is not\nsubject to Caddy's compatibility guarantee.", 1581 | "package": "github.com/mpilhlt/caddy-conneg", 1582 | "repo": "https://github.com/mpilhlt/caddy-conneg" 1583 | } 1584 | ], 1585 | "repo": "https://github.com/mpilhlt/caddy-conneg" 1586 | }, 1587 | { 1588 | "id": "dd8f09b5-f80b-4b57-935c-5add390e1cf6", 1589 | "path": "github.com/muety/caddy-pirsch-plugin", 1590 | "published": "2021-10-04T08:48:45.716801Z", 1591 | "updated": "2021-10-05T07:34:53.817435Z", 1592 | "listed": true, 1593 | "available": true, 1594 | "downloads": 106, 1595 | "modules": [ 1596 | { 1597 | "name": "http.handlers.pirsch", 1598 | "package": "github.com/muety/caddy-pirsch-plugin", 1599 | "repo": "https://github.com/muety/caddy-pirsch-plugin" 1600 | } 1601 | ], 1602 | "repo": "https://github.com/muety/caddy-pirsch-plugin" 1603 | }, 1604 | { 1605 | "id": "68355a50-91e9-4ce6-93a6-4ade6b5da74a", 1606 | "path": "github.com/muety/caddy-remote-host", 1607 | "published": "2021-10-02T14:11:25.994148Z", 1608 | "updated": "2021-10-02T14:11:25.994148Z", 1609 | "listed": true, 1610 | "available": true, 1611 | "downloads": 402, 1612 | "modules": [ 1613 | { 1614 | "name": "http.matchers.remote_host", 1615 | "docs": "http.matchers.remote_host matches based on the remote IP of the\nconnection. A host name can be specified, whose A and AAAA\nDNS records will be resolved to a corresponding IP for matching.\n\nNote that IPs can sometimes be spoofed, so do not rely\non this as a replacement for actual authentication.", 1616 | "package": "github.com/muety/caddy-remote-host", 1617 | "repo": "https://github.com/muety/caddy-remote-host" 1618 | } 1619 | ], 1620 | "repo": "https://github.com/muety/caddy-remote-host" 1621 | }, 1622 | { 1623 | "id": "0dde666a-cdd1-4ab5-8e84-ae074d4897ce", 1624 | "path": "github.com/porech/caddy-maxmind-geolocation", 1625 | "published": "2020-10-11T16:00:44.493715Z", 1626 | "updated": "2020-10-11T16:00:44.493715Z", 1627 | "listed": true, 1628 | "available": true, 1629 | "downloads": 2721, 1630 | "modules": [ 1631 | { 1632 | "name": "http.matchers.maxmind_geolocation", 1633 | "package": "github.com/porech/caddy-maxmind-geolocation", 1634 | "repo": "https://github.com/porech/caddy-maxmind-geolocation" 1635 | } 1636 | ], 1637 | "repo": "https://github.com/porech/caddy-maxmind-geolocation" 1638 | }, 1639 | { 1640 | "id": "22950d35-406b-48c6-8ef9-2ec77aea41aa", 1641 | "path": "github.com/pteich/caddy-tlsconsul", 1642 | "published": "2020-10-09T08:13:03.982308Z", 1643 | "updated": "2020-10-09T08:13:03.982308Z", 1644 | "listed": true, 1645 | "available": true, 1646 | "downloads": 4255, 1647 | "modules": [ 1648 | { 1649 | "name": "caddy.storage.consul", 1650 | "docs": "caddy.storage.consul allows to store certificates and other TLS resources\nin a shared cluster environment using Consul's key/value-store.\nIt uses distributed locks to ensure consistency.", 1651 | "package": "github.com/pteich/caddy-tlsconsul", 1652 | "repo": "https://github.com/pteich/caddy-tlsconsul" 1653 | } 1654 | ], 1655 | "repo": "https://github.com/pteich/caddy-tlsconsul" 1656 | }, 1657 | { 1658 | "id": "97c4f0c2-81bb-4cd4-a1d2-0452bdd8129a", 1659 | "path": "github.com/shift72/caddy-geo-ip", 1660 | "published": "2022-02-28T22:58:17.335271Z", 1661 | "updated": "2022-02-28T22:58:17.335271Z", 1662 | "listed": true, 1663 | "available": true, 1664 | "downloads": 226, 1665 | "modules": [ 1666 | { 1667 | "name": "http.handlers.geoip", 1668 | "docs": "Allows looking up the Country Code of an IP address based on the Maxmind database", 1669 | "package": "github.com/shift72/caddy-geo-ip", 1670 | "repo": "https://github.com/shift72/caddy-geo-ip" 1671 | } 1672 | ], 1673 | "repo": "https://github.com/shift72/caddy-geo-ip" 1674 | }, 1675 | { 1676 | "id": "eae45b0a-fefe-435a-8a2f-4d62d5a97089", 1677 | "path": "github.com/silinternational/certmagic-storage-dynamodb/v2", 1678 | "published": "2020-09-22T13:49:25.765054Z", 1679 | "updated": "2020-09-22T13:49:25.765054Z", 1680 | "listed": true, 1681 | "available": true, 1682 | "downloads": 1505, 1683 | "modules": [ 1684 | { 1685 | "name": "caddy.storage.dynamodb", 1686 | "docs": "caddy.storage.dynamodb implements certmagic.Storage to facilitate\nstorage of certificates in DynamoDB for a clustered environment.\nAlso implements certmagic.Locker to facilitate locking\nand unlocking of cert data during storage", 1687 | "package": "github.com/silinternational/certmagic-storage-dynamodb/v2", 1688 | "repo": "https://github.com/silinternational/certmagic-storage-dynamodb" 1689 | } 1690 | ], 1691 | "repo": "https://github.com/silinternational/certmagic-storage-dynamodb" 1692 | }, 1693 | { 1694 | "id": "69f6c54f-c5e5-4d75-9c2a-439c079d39b4", 1695 | "path": "github.com/sillygod/cdp-cache", 1696 | "published": "2022-05-19T12:31:49.444871Z", 1697 | "updated": "2022-05-19T12:31:49.444871Z", 1698 | "listed": true, 1699 | "available": true, 1700 | "downloads": 25, 1701 | "modules": [ 1702 | { 1703 | "name": "admin.api.purge", 1704 | "docs": "admin.api.purge is a module that provides the /purge endpoint as the admin api.", 1705 | "package": "github.com/sillygod/cdp-cache", 1706 | "repo": "https://github.com/sillygod/cdp-cache" 1707 | }, 1708 | { 1709 | "name": "distributed.consul", 1710 | "docs": "distributed.consul handles the client to interact with the consul agent", 1711 | "package": "github.com/sillygod/cdp-cache/extends/distributed", 1712 | "repo": "https://github.com/sillygod/cdp-cache" 1713 | }, 1714 | { 1715 | "name": "http.handlers.http_cache", 1716 | "docs": "http.handlers.http_cache is a http handler as a middleware to cache the response", 1717 | "package": "github.com/sillygod/cdp-cache", 1718 | "repo": "https://github.com/sillygod/cdp-cache" 1719 | } 1720 | ], 1721 | "repo": "https://github.com/sillygod/cdp-cache" 1722 | }, 1723 | { 1724 | "id": "1de15c74-1a7e-4465-8279-ecfe9e5b3765", 1725 | "path": "github.com/sjtug/caddy2-filter", 1726 | "published": "2021-03-14T21:31:41.197316Z", 1727 | "updated": "2021-03-14T21:31:41.197316Z", 1728 | "listed": true, 1729 | "available": true, 1730 | "downloads": 1467, 1731 | "modules": [ 1732 | { 1733 | "name": "http.handlers.filter", 1734 | "docs": "http.handlers.filter implements an HTTP handler that writes the\nvisitor's IP address to a file or stream.", 1735 | "package": "github.com/sjtug/caddy2-filter", 1736 | "repo": "https://github.com/sjtug/caddy2-filter" 1737 | } 1738 | ], 1739 | "repo": "https://github.com/sjtug/caddy2-filter" 1740 | }, 1741 | { 1742 | "id": "9b8dd4b5-cb15-4a7d-8708-607535580563", 1743 | "path": "github.com/techknowlogick/caddy-s3browser", 1744 | "published": "2020-07-22T23:09:35.836744Z", 1745 | "updated": "2020-07-22T23:09:35.836744Z", 1746 | "listed": true, 1747 | "available": true, 1748 | "downloads": 1579, 1749 | "repo": "https://github.com/techknowlogick/caddy-s3browser" 1750 | }, 1751 | { 1752 | "id": "c4c23145-8650-4076-9a91-3a756eb64f10", 1753 | "path": "github.com/techknowlogick/certmagic-s3", 1754 | "published": "2022-02-07T19:13:27.724357Z", 1755 | "updated": "2022-02-07T19:13:27.724357Z", 1756 | "listed": true, 1757 | "available": true, 1758 | "downloads": 241, 1759 | "modules": [ 1760 | { 1761 | "name": "caddy.storage.s3", 1762 | "package": "github.com/techknowlogick/certmagic-s3", 1763 | "repo": "https://github.com/techknowlogick/certmagic-s3" 1764 | } 1765 | ], 1766 | "repo": "https://github.com/techknowlogick/certmagic-s3" 1767 | }, 1768 | { 1769 | "id": "dccbb833-8da6-4933-b034-0f2424eab355", 1770 | "path": "github.com/tosie/caddy-dns-linode", 1771 | "published": "2022-05-19T12:27:07.195943Z", 1772 | "updated": "2022-05-19T12:27:07.195943Z", 1773 | "listed": true, 1774 | "available": true, 1775 | "downloads": 22, 1776 | "modules": [ 1777 | { 1778 | "name": "dns.providers.linode", 1779 | "docs": "dns.providers.linode wraps the provider implementation as a Caddy module.", 1780 | "package": "github.com/tosie/caddy-dns-linode", 1781 | "repo": "https://github.com/tosie/caddy-dns-linode" 1782 | } 1783 | ], 1784 | "repo": "https://github.com/tosie/caddy-dns-linode" 1785 | }, 1786 | { 1787 | "id": "8fb0b4b3-9a42-4e69-a8f5-60c61c527922", 1788 | "path": "github.com/ueffel/caddy-basic-auth-filter", 1789 | "published": "2021-12-05T19:40:36.830668Z", 1790 | "updated": "2021-12-05T19:40:36.830668Z", 1791 | "listed": true, 1792 | "available": true, 1793 | "downloads": 214, 1794 | "modules": [ 1795 | { 1796 | "name": "caddy.logging.encoders.filter.basic_auth_user", 1797 | "docs": "caddy.logging.encoders.filter.basic_auth_user is a Caddy log field filter that replaces the a base64 encoded authorization\nheader with just the user name.", 1798 | "package": "github.com/ueffel/caddy-basic-auth-filter", 1799 | "repo": "https://github.com/ueffel/caddy-basic-auth-filter" 1800 | } 1801 | ], 1802 | "repo": "https://github.com/ueffel/caddy-basic-auth-filter" 1803 | }, 1804 | { 1805 | "id": "0b6f58d0-e463-42dd-a7b1-af12067c8ffe", 1806 | "path": "github.com/ueffel/caddy-brotli", 1807 | "published": "2021-06-08T15:39:31.114154Z", 1808 | "updated": "2021-06-08T15:39:31.114154Z", 1809 | "listed": true, 1810 | "available": true, 1811 | "downloads": 932, 1812 | "modules": [ 1813 | { 1814 | "name": "http.encoders.br", 1815 | "docs": "http.encoders.br can create brotli encoders.", 1816 | "package": "github.com/ueffel/caddy-brotli", 1817 | "repo": "https://github.com/ueffel/caddy-brotli" 1818 | } 1819 | ], 1820 | "repo": "https://github.com/ueffel/caddy-brotli" 1821 | }, 1822 | { 1823 | "id": "406c2a3c-b86b-4928-96a5-446ca896d4f3", 1824 | "path": "github.com/ueffel/caddy-imagefilter/defaults", 1825 | "published": "2021-06-08T15:42:43.751476Z", 1826 | "updated": "2021-06-08T15:42:43.751476Z", 1827 | "listed": true, 1828 | "available": true, 1829 | "downloads": 267, 1830 | "repo": "https://github.com/ueffel/caddy-imagefilter" 1831 | }, 1832 | { 1833 | "id": "890f90a5-21d9-4e69-aaec-1d7cfaf95fd5", 1834 | "path": "github.com/ueffel/caddy-tls-format", 1835 | "published": "2021-09-24T14:05:30.684122Z", 1836 | "updated": "2021-09-24T14:05:30.684122Z", 1837 | "listed": true, 1838 | "available": true, 1839 | "downloads": 216, 1840 | "modules": [ 1841 | { 1842 | "name": "caddy.logging.encoders.filter.tls_cipher", 1843 | "docs": "caddy.logging.encoders.filter.tls_cipher is Caddy log field filter that replaces the numeric TLS cipher_suite value with\nthe string representation.", 1844 | "package": "github.com/ueffel/caddy-tls-format", 1845 | "repo": "https://github.com/ueffel/caddy-tls-format" 1846 | }, 1847 | { 1848 | "name": "caddy.logging.encoders.filter.tls_version", 1849 | "docs": "caddy.logging.encoders.filter.tls_version is a Caddy log field filter that replaces the numeric TLS version with the\nstring version and optionally adds a prefix.", 1850 | "package": "github.com/ueffel/caddy-tls-format", 1851 | "repo": "https://github.com/ueffel/caddy-tls-format" 1852 | } 1853 | ], 1854 | "repo": "https://github.com/ueffel/caddy-tls-format" 1855 | }, 1856 | { 1857 | "id": "81110df4-ad7f-4a27-85b4-99590c4d5c02", 1858 | "path": "magnax.ca/caddy/gopkg", 1859 | "published": "2021-02-15T23:34:52.704583Z", 1860 | "updated": "2021-02-15T23:34:52.704583Z", 1861 | "listed": true, 1862 | "available": true, 1863 | "downloads": 614, 1864 | "modules": [ 1865 | { 1866 | "name": "http.handlers.gopkg", 1867 | "docs": "http.handlers.gopkg represents the GoPkg Caddy module.", 1868 | "package": "magnax.ca/caddy/gopkg", 1869 | "repo": "https://github.com/MagnaXSoftware/gopkg" 1870 | } 1871 | ], 1872 | "repo": "https://github.com/MagnaXSoftware/gopkg" 1873 | } 1874 | ] 1875 | } 1876 | -------------------------------------------------------------------------------- /update_package.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | (curl -SsL https://caddyserver.com/api/packages | jq) >package.json 4 | --------------------------------------------------------------------------------