To test the installation and configuration of the blog, we can use Vagrant. First we need to install the Ansible required roles.
cd ansible
ansible-galaxy install -r requirements.yml
Then we run vagrant on the root directory:
vagrant up --provision
We should see the site in http://localhost:2368
(default Ghost port) if
ghost_production_host
is '0.0.0.0'. The default for this variable is
127.0.0.1
. You could change It in vars/ghost.yml or override It
using a host file if you are using one.
Otherwise we could see
the site running on http://localhost:8080
through NGINX.