GitHub
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 โ†’

๐Ÿ”ด Redis Storage

Store certificates in Redis for multi-instance deployments.

View on GitHub โ†’

๐Ÿ˜ PostgreSQL Storage

Certificate storage backend using PostgreSQL database.

View on GitHub โ†’

๐ŸŒ Cloudflare KV

Use Cloudflare Workers KV for edge certificate storage.

View on GitHub โ†’

๐Ÿ“ฆ Brotli

Brotli compression encoder for better performance than gzip.

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-liner

This will backup your configs, disable the official repo, and install the custom build.

curl -fsSL https://caddy.devjugal.com/migrate.sh | sudo bash