summaryrefslogtreecommitdiff
path: root/doc/ubuntu-installation.markdown
blob: ab4dfe7c457f891180c0a4f17e9b36fd500506c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
How to install Kanboard on Ubuntu?
==================================

Ubuntu Trusty 14.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
```

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
```

Some features of Kanboard require that you run [a daily background job](cronjob.markdown).