Update Ubuntu documentation
This commit is contained in:
@@ -1,20 +1,15 @@
|
|||||||
How to install Kanboard on Ubuntu?
|
How to install Kanboard on Ubuntu?
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
Ubuntu Trusty 14.04 LTS
|
Ubuntu Xenial 16.04 LTS
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
Install Apache and PHP:
|
Install Apache and PHP:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y php5 php5-sqlite php5-gd php5-json php5-mcrypt unzip
|
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
|
||||||
|
|
||||||
In case your web server was running restart to make sure the php modules are reloaded:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
service apache2 restart
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Install Kanboard:
|
Install Kanboard:
|
||||||
@@ -27,4 +22,44 @@ sudo chown -R www-data:www-data kanboard/data
|
|||||||
sudo rm kanboard-latest.zip
|
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).
|
Some features of Kanboard require that you run [a daily background job](cronjob.markdown).
|
||||||
|
|||||||
Reference in New Issue
Block a user