Agree with the suggestion previous colleagues have provided.For me, on MacBook, symlinks sometimes get broken after checkout from Git.Here is a bash script to recreate all symlinks. Hope it helps. project_root=$(pwd)
cd dispatcher/src/conf.d/enabled_vhosts
enabled_hosts=$(ls *.vhost)
for host in $e...