diff --git a/README.md b/README.md index f4f09c7..f646fe0 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 8684934..ef870f2 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