custom domains for apps
heroku domains
heroku domains:add HOSTNAME
heroku domains:clear
heroku domains:info HOSTNAME
heroku domains:remove HOSTNAME
heroku domains:update [HOSTNAME]
heroku domains:wait [HOSTNAME]
list domains for an app
list domains for an app
USAGE
$ heroku domains
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-j, --json output in json format
-r, --remote=remote git remote of app to use
-x, --extended show extra columns
--columns=columns only show provided columns (comma-separated)
--csv output is csv format
--filter=filter filter property by partial string matching, ex: name=foo
--no-header hide table header from output
--sort=sort property to sort by (prepend '-' for descending)
EXAMPLES
$ heroku domains
=== example Heroku Domain
example.herokuapp.com
=== example Custom Domains
Domain Name DNS Record Type DNS Target
www.example.com CNAME www.example.herokudns.com
$ heroku domains --filter 'Domain Name=www.example.com'
See code: @heroku-cli/plugin-apps
add a domain to an app
add a domain to an app
USAGE
$ heroku domains:add HOSTNAME
OPTIONS
-a, --app=app (required) app to run command against
-c, --cert=cert the name of the SSL cert you want to use for this domain
-h, --help show CLI help
-j, --json output in json format
-r, --remote=remote git remote of app to use
--wait
EXAMPLE
heroku domains:add www.example.com
See code: @heroku-cli/plugin-apps
remove all domains from an app
remove all domains from an app
USAGE
$ heroku domains:clear
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-r, --remote=remote git remote of app to use
EXAMPLE
heroku domains:clear
See code: @heroku-cli/plugin-apps
show detailed information for a domain on an app
show detailed information for a domain on an app
USAGE
$ heroku domains:info HOSTNAME
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-r, --remote=remote git remote of app to use
EXAMPLE
$ heroku domains:info www.example.com
See code: @heroku-cli/plugin-apps
remove a domain from an app
remove a domain from an app
USAGE
$ heroku domains:remove HOSTNAME
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-r, --remote=remote git remote of app to use
EXAMPLE
heroku domains:remove www.example.com
See code: @heroku-cli/plugin-apps
update a domain to use a different SSL certificate on an app
update a domain to use a different SSL certificate on an app
USAGE
$ heroku domains:update [HOSTNAME]
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-r, --remote=remote git remote of app to use
--cert=cert (required) the name or id of the certificate you want to use for this domain
EXAMPLE
heroku domains:update www.example.com --cert mycert
See code: @heroku-cli/plugin-apps
wait for domain to be active for an app
wait for domain to be active for an app
USAGE
$ heroku domains:wait [HOSTNAME]
OPTIONS
-a, --app=app (required) app to run command against
-h, --help show CLI help
-r, --remote=remote git remote of app to use
See code: @heroku-cli/plugin-apps