From 4ffddb8b579f4256af6a2006750a529a38032a94 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Fri, 26 Jun 2020 01:53:52 +0900 Subject: [PATCH] chg: [doc] Added mod_rewrite note --- INSTALL/INSTALL.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/INSTALL/INSTALL.md b/INSTALL/INSTALL.md index 825e695..37e67db 100644 --- a/INSTALL/INSTALL.md +++ b/INSTALL/INSTALL.md @@ -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: ```