Domains and Routing

Make applications accessible via custom domain names and manage routing.

Add or remove custom domains for your application using drycc domains:

$ drycc domains add hello.bacongobbler.com --ptype=web
Adding hello.bacongobbler.com to finest-woodshed... done

After adding the domain, configure DNS by setting up a CNAME record from your custom domain to the Drycc domain:

$ dig hello.dryccapp.com
[...]
;; ANSWER SECTION:
hello.bacongobbler.com.         1759    IN    CNAME    finest-woodshed.dryccapp.com.
finest-woodshed.dryccapp.com.    270     IN    A        172.17.8.100

Manage Routing

Control application accessibility through the routing mesh using drycc routing:

Disable routing to make the application unreachable externally (but still accessible internally via Kubernetes Service):

$ drycc routing disable
Disabling routing for finest-woodshed... done

Re-enable routing to restore external access:

$ drycc routing enable
Enabling routing for finest-woodshed... done

Last modified 11.10.2025: chore(zh-cn): 优化中文文档 (931e2de)