From c39cfc7ec1b28c1eb33c6d0f5ae367c72b523ddc Mon Sep 17 00:00:00 2001 From: Wojciech Krawczyk Date: Wed, 7 May 2014 23:19:41 +0200 Subject: [PATCH] Fix document root Default document root is /var/www/html now. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e20a82b..d191efa 100755 --- a/install.sh +++ b/install.sh @@ -34,8 +34,8 @@ echo "--- Enabling mod-rewrite ---" sudo a2enmod rewrite echo "--- Setting document root ---" -sudo rm -rf /var/www -sudo ln -fs /vagrant/public /var/www +sudo rm -rf /var/www/html +sudo ln -fs /vagrant/public /var/www/html echo "--- What developer codes without errors turned on? Not you, master. ---"