-
Notifications
You must be signed in to change notification settings - Fork 894
fix: wildcard dns docs #7709
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
fix: wildcard dns docs #7709
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Signed-off-by: Spike Curtis <spike@coder.com>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -38,8 +38,13 @@ coder server | |||||
via the dashboard or running [coder_apps](../templates/README.md#coder-apps) on an absolute path. Set this to a wildcard | ||||||
subdomain that resolves to Coder (e.g. `*.coder.example.com`). | ||||||
|
||||||
> If you are providing TLS certificates directly to the Coder server, you must use a single certificate for the | ||||||
> root and wildcard domains. Multi-certificate support [is planned](https://github.com/coder/coder/pull/4150). | ||||||
If you are providing TLS certificates directly to the Coder server, either | ||||||
|
||||||
1. use a single certificate/key for the root and wildcard domains. | ||||||
2. configure both root and wildcard domain certificates/keys via | ||||||
[`coder.tls.secretNames`](https://github.com/coder/coder/blob/main/helm/values.yaml) in the Helm Chart, or | ||||||
[`--tls-key-file`](../cli/server#--tls-cert-file) and [`--tls-key-file`](../cli/server#--tls-key-file) command | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @spikecurtis I guess this was a typo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should specify that this should be specified as a comma separated list or the flag can be specified multiple times |
||||||
line options. | ||||||
|
||||||
## TLS & Reverse Proxy | ||||||
|
||||||
|
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.