typically requires root access. So, you will most likely need to run
the commands below as the root user using `sudo`.
-*Enable server-side include module*
+*Enable required modules*
```
-a2enmod include
+a2enmod include rewrite
```
If this doesn't work, you may not have Apache installed. Install the
*Create virtual host*
-Create a new file called libreplanet (libreplanet.conf for Apache 2.4) in `/etc/apache2/sites-available` with the following contents:
+Create a new file called libreplanet.conf in `/etc/apache2/sites-available` with the following contents:
```
<VirtualHost *:80>
Replace all instances of `/path-to-site` and with the full path to the root directory of your local
git repository.
+* Create the logs directory, as a normal user *
+```
+mkdir /path-to-site/logs
+chmod 777 /path-to-site/logs
+```
+
+
*Enable virtual host*
```
-a2ensite your-virtual-host
+a2ensite libreplanet
* Do not need to do on mdb system
```