For Nginx and Apache you often want to Symlink your sites-available configuration file to the corresponding file in the sites-enabled folder.
ln -s /usr/local/etc/nginx/sites-available/{hostfile} /usr/local/etc/nginx/sites-enabled/{hostfile}
Restart you NGINX webserver now:
sudo nginx -s reload