chg: [doc] Added mod_rewrite note

pull/17/head
Steve Clement 2020-06-26 01:53:52 +09:00
parent f79b37c93d
commit 4ffddb8b57
No known key found for this signature in database
GPG Key ID: 69A20F509BE4AEE9
1 changed files with 8 additions and 3 deletions

View File

@ -13,7 +13,7 @@ Install dependencies
sudo apt install composer apache2 libapache2-mod-php php php-intl php-mysql php-mbstring php-sqlite3 php-xml unzip mariadb-server
```
Simply clone this repository (for example into /var/www/cerebrate)
Clone this repository (for example into /var/www/cerebrate)
```
sudo mkdir /var/www/cerebrate
@ -40,9 +40,8 @@ FLUSH PRIVILEGES;
```
```
mysql
sudo mysql -e "CREATE DATABASE cerebrate;"
sudo mysql -e "CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD';"
sudo mysql -e "CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOuR_Pa$$WORD!';"
sudo mysql -e "GRANT USAGE ON *.* to cerebrate@localhost;"
sudo mysql -e "GRANT ALL PRIVILEGES ON cerebrate.* to cerebrate@localhost;"
sudo mysql -e "FLUSH PRIVILEGES;"
@ -65,6 +64,12 @@ Modify the Datasource -> default array's username, password, database fields
Create an apache config file for cerebrate / ssh key and point the document root to /var/www/cerebrate/webroot/index.php and you're good to go.
mod_rewrite needs to be enabled:
```
sudo a2enmod rewrite
```
For development installs the following can be done:
```