-
Notifications
You must be signed in to change notification settings - Fork 899
docs: add Caddy+LetsEncrypt TLS example #4585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
coder.example.com, *.coder.example.com { | ||
reverse_proxy localhost:3000 | ||
tls { | ||
on_demand | ||
issuer acme { | ||
email email@example.com | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# Caddy | ||
|
||
This is an example configuration of how to use Coder with [caddy](https://caddyserver.com/docs). To use Caddy to generate TLS certificates, you'll need a domain name that resolves to your Caddy server. | ||
|
||
## Getting started | ||
|
||
### With docker-compose | ||
|
||
1. [Install Docker](https://docs.docker.com/engine/install/) and [Docker Compose](https://docs.docker.com/compose/install/) | ||
|
||
1. Start with our example configuration | ||
|
||
```sh | ||
# Create a project folder | ||
cd $HOME | ||
mkdir coder-with-caddy | ||
cd coder-with-caddy | ||
|
||
# Clone coder/coder and copy the Caddy example | ||
git clone https://github.com/coder/coder /tmp/coder | ||
mv /tmp/coder/examples/web-server/caddy $(pwd) | ||
``` | ||
|
||
1. Modify the [Caddyfile](./Caddyfile) and change the following values: | ||
|
||
- `localhost:3000`: Change to `coder:7080` (Coder container on Docker network) | ||
- `email@example.com`: Email to request certificates from LetsEncrypt/ZeroSSL (does not have to be Coder admin email) | ||
- `coder.example.com`: Domain name you're using for Coder. | ||
- `*.coder.example.com`: Domain name for wildcard apps, commonly used for [dashboard port forwarding](https://coder.com/docs/coder-oss/latest/networking/port-forwarding#dashboard). This is optional and can be removed. | ||
|
||
1. Start Coder. Set `CODER_ACCESS_URL` and `CODER_WILDCARD_ACCESS_URL` to the domain you're using in your Caddyfile. | ||
|
||
```sh | ||
export CODER_ACCESS_URL=https://coder.example.com | ||
export CODER_WILDCARD_ACCESS_URL=*.coder.example.com | ||
docker compose up -d # Run on startup | ||
``` | ||
|
||
### Standalone | ||
|
||
1. If you haven't already, [install Coder](https://coder.com/docs/coder-oss/latest/install) | ||
|
||
1. Install [Caddy Server](https://caddyserver.com/docs/install) | ||
|
||
1. Copy our sample [Caddyfile](./Caddyfile) and change the following values: | ||
|
||
> If you're installed Caddy as a system package, update the default Caddyfile with `vim /etc/caddy/Caddyfile` | ||
|
||
- `email@example.com`: Email to request certificates from LetsEncrypt/ZeroSSL (does not have to be Coder admin email) | ||
- `coder.example.com`: Domain name you're using for Coder. | ||
- `*.coder.example.com`: Domain name for wildcard apps, commonly used for [dashboard port forwarding](https://coder.com/docs/coder-oss/latest/networking/port-forwarding#dashboard). This is optional and can be removed. | ||
- `localhost:3000`: Address Coder is running on. Modify this if you changed `CODER_ADDRESS` in the Coder configuration. | ||
|
||
1. [Configure Coder](https://coder.com/docs/coder-oss/latest/admin/configure) and change the following values: | ||
|
||
- `CODER_ACCESS_URL`: root domain (e.g. `https://coder.example.com`) | ||
- `CODER_WILDCARD_ACCESS_URL`: wildcard domain (e.g. `*.example.com`). | ||
|
||
1. Start the Caddy server: | ||
|
||
If you're [keeping Caddy running](https://caddyserver.com/docs/running) via a system service: | ||
|
||
```sh | ||
sudo systemctl restart caddy | ||
``` | ||
|
||
Or run a standalone server: | ||
|
||
```sh | ||
caddy run | ||
``` | ||
|
||
1. Optionally, use [ufw](https://wiki.ubuntu.com/UncomplicatedFirewall) or another firewall to disable external traffic outside of Caddy. | ||
|
||
```sh | ||
# Check status of UncomplicatedFirewall | ||
sudo ufw status | ||
|
||
# Allow SSH | ||
sudo ufw allow 22 | ||
|
||
# Allow HTTP, HTTPS (Caddy) | ||
sudo ufw allow 80 | ||
sudo ufw allow 443 | ||
|
||
# Deny direct access to Coder server | ||
sudo ufw deny 3000 | ||
|
||
# Enable UncomplicatedFirewall | ||
sudo ufw enable | ||
``` | ||
|
||
1. Navigate to your Coder URL! A TLS certificate should be auto-generated on your first visit. | ||
|
||
## Generating wildcard certificates | ||
|
||
By default, this configuration uses Caddy's [on-demand TLS](https://caddyserver.com/docs/caddyfile/options#on-demand-tls) to generate a certificate for each subdomain (e.g. `app1.coder.example.com`, `app2.coder.example.com`). When users visit new subdomains, such as accessing [ports on a workspace](../../networking/port-forwarding.md), the request will take an additional 5-30 seconds since a new certificate is being generated. | ||
|
||
For production deployments, we recommend configuring Caddy to generate a wildcard certificate, which requires an explicit DNS challenge and additional Caddy modules. | ||
|
||
1. Install a custom Caddy build that includes the [caddy-dns](https://github.com/caddy-dns) module for your DNS provider (e.g. CloudFlare, Route53). | ||
|
||
- Docker: [Build an custom Caddy image](https://github.com/docker-library/docs/tree/master/caddy#adding-custom-caddy-modules) with the module for your DNS provider. Be sure to reference the new image in the `docker-compose.yaml`. | ||
|
||
- Standalone: [Download a custom Caddy build](https://caddyserver.com/download) with the module for your DNS provider. If you're using Debian/Ubuntu, you [can configure the Caddy package](https://caddyserver.com/docs/build#package-support-files-for-custom-builds-for-debianubunturaspbian) to use the new build. | ||
|
||
1. Edit your `Caddyfile` and add the necessary credentials/API tokens to solve the DNS challenge for wildcard certificates. | ||
|
||
```diff | ||
tls { | ||
- on_demand | ||
issuer acme { | ||
email email@example.com | ||
} | ||
|
||
+ dns route53 { | ||
+ max_retries 10 | ||
+ aws_profile "real-profile" | ||
+ access_key_id "AKI..." | ||
+ secret_access_key "wJa..." | ||
+ token "TOKEN..." | ||
+ region "us-east-1" | ||
+ } | ||
} | ||
``` | ||
|
||
> Configuration reference from [caddy-dns/route53](https://github.com/caddy-dns/route53). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
version: "3.9" | ||
bpmct marked this conversation as resolved.
Show resolved
Hide resolved
|
||
services: | ||
coder: | ||
image: ghcr.io/coder/coder:${CODER_VERSION:-latest} | ||
environment: | ||
CODER_PG_CONNECTION_URL: "postgresql://${POSTGRES_USER:-username}:${POSTGRES_PASSWORD:-password}@database/${POSTGRES_DB:-coder}?sslmode=disable" | ||
CODER_ADDRESS: "0.0.0.0:7080" | ||
# You'll need to set CODER_ACCESS_URL to an IP or domain | ||
# that workspaces can reach. This cannot be localhost | ||
# or 127.0.0.1 for non-Docker templates! | ||
CODER_ACCESS_URL: "${CODER_ACCESS_URL}" | ||
# Optional) Enable wildcard apps/dashboard port forwarding | ||
CODER_WILDCARD_ACCESS_URL: "${CODER_WILDCARD_ACCESS_URL}" | ||
# If the coder user does not have write permissions on | ||
# the docker socket, you can uncomment the following | ||
# lines and set the group ID to one that has write | ||
# permissions on the docker socket. | ||
#group_add: | ||
# - "998" # docker group on host | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
depends_on: | ||
database: | ||
condition: service_healthy | ||
database: | ||
image: "postgres:14.2" | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRES_USER: ${POSTGRES_USER:-username} # The PostgreSQL user (useful to connect to the database) | ||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password} # The PostgreSQL password (useful to connect to the database) | ||
POSTGRES_DB: ${POSTGRES_DB:-coder} # The PostgreSQL default database (automatically created at first launch) | ||
volumes: | ||
- coder_data:/var/lib/postgresql/data # Use "docker volume rm coder_coder_data" to reset Coder | ||
healthcheck: | ||
test: | ||
[ | ||
"CMD-SHELL", | ||
"pg_isready -U ${POSTGRES_USER:-username} -d ${POSTGRES_DB:-coder}", | ||
] | ||
interval: 5s | ||
timeout: 5s | ||
retries: 5 | ||
caddy: | ||
image: caddy:2.6.2 | ||
ports: | ||
- "80:80" | ||
- "443:443" | ||
- "443:443/udp" | ||
volumes: | ||
- $PWD/Caddyfile:/etc/caddy/Caddyfile | ||
- caddy_data:/data | ||
- caddy_config:/config | ||
volumes: | ||
coder_data: | ||
caddy_data: | ||
caddy_config: |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fairly certain this is the only downside of using Caddy's on-demand TLS. While LetsEncrypt's rate limit (50 certificates/domain/week) can quickly be exhausted, Caddy will silently fall back to ZeroSSL which has no rate limit. ZeroSSL is significantly slower though. If you think this needs further explanation in the docs, I can expand.
With that being said, the extra effort for a wildcard is worth it if a Coder deployment is being actively being used in production.