APT Repository Available
Custom Caddy Build
Pre-built Caddy web server with essential plugins for DNS challenges, distributed storage, and compression. Ready to install via APT.
Included Plugins
โ๏ธ Cloudflare DNS
ACME DNS challenge provider for wildcard certificates without exposing ports.
View on GitHub โInstallation
Terminal
# Add GPG key curl -fsSL https://caddy.devjugal.com/public.key | sudo gpg --dearmor -o /usr/share/keyrings/caddy-custom.gpg # Add repository echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/caddy-custom.gpg] https://caddy.devjugal.com stable main" | sudo tee /etc/apt/sources.list.d/caddy-custom.list # Install sudo apt update && sudo apt install caddy
Migrating from Official Caddy?
One-linerThis will backup your configs, disable the official repo, and install the custom build.
curl -fsSL https://caddy.devjugal.com/migrate.sh | sudo
bash