We use cookies to make your experience better.
Learn how to set the access URL.
This article will show you how to change your access URL, which is a custom domain name that you can use to access your Coder deployment.
The steps to do this vary based on the DNS provider you're using, but the general steps required are as follows:
kubectl get all -n <your_namespace> -o wide
Find the service/coderd line, and copy the external IP value shown.
Point your DNS records from your custom domain to the external IP address you obtained in the previous step.
If your custom domain uses the HTTPS protocol, make sure that you have TLS certificates for use with your Coder deployment. Otherwise, you can skip this step.
When changing your access URL, you'll need to update your Helm chart and redeploy Coder:
helm upgrade coder coder/coder
--set devurlsHost="*.example.com"
See the enterprise-helm repo for more information on Coder's Helm charts.
Log into Coder as a site admin/site manager and go to Manage > Admin > Infrastructure.
Provide your custom domain in the Access URL field. The URL you provide
must match the value you provided as ingress.host
in the previous step.
See an opportunity to improve our docs? Make an edit.