Custom Caddy Build
Pre-built Caddy web server with essential plugins for DNS challenges, distributed storage, and compression. Ready to install via APT.
Why Use This Build?
Production Optimized
Carefully selected plugins for real-world deployments with wildcard certificates, distributed storage, and optimal compression.
Always Updated
Automated builds ensure you get the latest stable Caddy version with security patches and plugin updates.
Zero Downtime
Graceful reloads and hot config updates mean you never have to stop your server for configuration changes.
Secure by Default
Automatic HTTPS with Let's Encrypt, modern TLS defaults, and battle-tested security configurations out of the box.
Included Plugins
Installation
# Add GPG key for package verification curl -fsSL https://caddy.devjugal.com/public.key | sudo gpg --dearmor -o /usr/share/keyrings/caddy-custom.gpg # Add APT 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 # Update and install sudo apt update && sudo apt install caddy
Migrating from Official Caddy?
One-linerAutomatically backs up your configs, disables the official repository, and switches to this custom build without data loss.
curl -fsSL https://caddy.devjugal.com/migrate.sh | sudo
bash