update local dev instructions
authorIan Kelling <iank@fsf.org>
Thu, 28 Jun 2018 20:10:44 +0000 (16:10 -0400)
committerIan Kelling <iank@fsf.org>
Thu, 28 Jun 2018 20:10:44 +0000 (16:10 -0400)
2018/README.md

index 9055440ab339205e77eef62e7c6bb7013c95608e..f0246c704de4e19e5838916ab8aa019ca63fec91 100644 (file)
@@ -121,10 +121,10 @@ Modifying Apache's configuration files and running its executables
 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
@@ -132,7 +132,7 @@ package apache2 from your package manager.
 
 *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>
@@ -159,10 +159,17 @@ RewriteEngine on
 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
 ```