Caddy
Use this guide to configure Caddy as a reverse proxy for Planka.
1. Edit the Caddy Configuration
Open the Caddyfile in your preferred editor:
sudo nano /etc/caddy/Caddyfile
2. Add Your Configuration
Replace placeholders with your actual email and domain:
{
email your@email.tld
}
your.domain.tld {
reverse_proxy http://localhost:3000
}
This config enables automatic HTTPS via Let's Encrypt.
3. Update Planka's Base URL
Make sure the BASE_URL
in your .env
file or docker-compose.yml
matches the domain you've configured:
BASE_URL=https://your.domain.tld
After saving changes, restart the Caddy service to apply the new configuration:
sudo systemctl restart caddy
Now your Planka instance should be securely accessible at https://your.domain.tld
.