diff --git a/README.md b/README.md
index f4f09c72be47850f95b75477ff48996bb85de998..f646fe03179d093f21eba380f3c7b012e459884b 100644
--- a/README.md
+++ b/README.md
@@ -5,16 +5,16 @@
   - run `vagrant plugin install vagrant-hostsupdater` to install
 
 ## Get started:
-- Put a TLS certificate (self-signed is fine, but make sure you have [public, intermediate, and private all concatenated into one .pem file](https://www.digitalocean.com/community/tutorials/how-to-implement-ssl-termination-with-haproxy-on-ubuntu-14-04)) in /data/per-user/coreos.dev/combined.pem on the host system.
-- Test it with `openssl s_server -cert /data/per-user/coreos.dev/combined.pem -www`
+- Put a TLS certificate (self-signed is fine, but make sure you have [public, intermediate, and private all concatenated into one .pem file](https://www.digitalocean.com/community/tutorials/how-to-implement-ssl-termination-with-haproxy-on-ubuntu-14-04)) in /data/per-user/indiehosters.dev/combined.pem on the host system.
+- Test it with `openssl s_server -cert /data/per-user/indiehosters.dev/combined.pem -www`
 
 ```bash
 vagrant up
 ```
 
-Wait for the provisioning to finish (~40mins), and go to your browser: https://coreos.dev
+Wait for the provisioning to finish (~40mins), and go to your browser: https://indiehosters.dev
 
-### If you want to add another wordpress instance apart from coreos.dev:
+### If you want to add another wordpress instance apart from indiehosters.dev:
 - For e.g. example.dev, put a cert for it in /data/per-user/example.dev/combined.pem on
 the host system.
 - Test it with `openssl s_server -cert /data/per-user/example.dev/combined.pem -www`
diff --git a/Vagrantfile b/Vagrantfile
index 868493401a112d0b406514e8f12361bc356a6b50..ef870f22d8ab242935d8d4f86dfdc2ea23a522e5 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -17,7 +17,7 @@ $vb_memory = 1024
 $vb_cpus = 1
 
 BASE_IP_ADDR  = ENV['BASE_IP_ADDR'] || "192.168.65"
-HOSTNAME = ENV['HOSTNAME'] || "coreos.dev"
+HOSTNAME = ENV['HOSTNAME'] || "indiehosters.dev"
 
 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
   config.vm.box = "coreos-%s" % $update_channel