Various minor improvements in the installation instructions.
parent
2f49fc354b
commit
40622f45ba
|
@ -1,11 +1,6 @@
|
||||||
Installation on Ubuntu 16.04
|
Installation on Ubuntu 16.04
|
||||||
============================
|
============================
|
||||||
|
|
||||||
The master branch should always be working and it is recommended to install the
|
|
||||||
project using this one.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 1. Install LAMP & dependencies
|
# 1. Install LAMP & dependencies
|
||||||
|
|
||||||
## Install the dependencies
|
## Install the dependencies
|
||||||
|
@ -37,15 +32,17 @@ Especially by setting a strong root password.
|
||||||
|
|
||||||
## Apache Virtual Host
|
## Apache Virtual Host
|
||||||
|
|
||||||
<VirtualHost 127.0.0.1:80>
|
<VirtualHost *:80>
|
||||||
ServerName monarc.localhost
|
ServerName monarc.localhost
|
||||||
DocumentRoot /var/lib/monarc/fo/public
|
DocumentRoot /var/lib/monarc/fo/public
|
||||||
SetEnv APPLICATION_ENV "development"
|
|
||||||
<Directory /path/to/monarc/public>
|
<Directory /var/lib/monarc/fo/public>
|
||||||
DirectoryIndex index.php
|
DirectoryIndex index.php
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Require all granted
|
Require all granted
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
SetEnv APPLICATION_ENV "development"
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
|
|
||||||
|
@ -55,7 +52,7 @@ Especially by setting a strong root password.
|
||||||
|
|
||||||
## Apply all changes
|
## Apply all changes
|
||||||
|
|
||||||
sudo systemctl restart apache2
|
sudo systemctl restart apache2.service
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue