Update Ubuntu documentation

This commit is contained in:
Frederic Guillot 2016-03-26 19:55:55 -04:00
parent 0f3791011c
commit ec08dd4aad
1 changed files with 43 additions and 8 deletions

View File

@ -1,20 +1,15 @@
How to install Kanboard on Ubuntu?
==================================
Ubuntu Trusty 14.04 LTS
Ubuntu Xenial 16.04 LTS
-----------------------
Install Apache and PHP:
```bash
sudo apt-get update
sudo apt-get install -y php5 php5-sqlite php5-gd php5-json php5-mcrypt unzip
```
In case your web server was running restart to make sure the php modules are reloaded:
```bash
service apache2 restart
sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-mbstring php7.0-sqlite3 \
php7.0-opcache php7.0-json php7.0-mysql php7.0-pgsql php7.0-ldap php7.0-gd
```
Install Kanboard:
@ -27,4 +22,44 @@ sudo chown -R www-data:www-data kanboard/data
sudo rm kanboard-latest.zip
```
Ubuntu Trusty 14.04 LTS
-----------------------
Install Apache and PHP:
```bash
sudo apt-get update
sudo apt-get install -y php5 php5-sqlite php5-mysql php5-pgsql php5-ldap php5-gd php5-json php5-mcrypt unzip
```
Install Kanboard:
```bash
cd /var/www/html
sudo wget http://kanboard.net/kanboard-latest.zip
sudo unzip kanboard-latest.zip
sudo chown -R www-data:www-data kanboard/data
sudo rm kanboard-latest.zip
```
Ubuntu Precise 12.04 LTS
------------------------
Install Apache and PHP:
```bash
sudo apt-get update
sudo apt-get install -y php5 php5-sqlite php5-mysql php5-pgsql php5-ldap php5-gd php5-json php5-mcrypt unzip
```
Install Kanboard:
```bash
cd /var/www
sudo wget http://kanboard.net/kanboard-latest.zip
sudo unzip kanboard-latest.zip
sudo chown -R www-data:www-data kanboard/data
sudo rm kanboard-latest.zip
```
Some features of Kanboard require that you run [a daily background job](cronjob.markdown).