diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-20 15:13:50 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-20 15:13:50 -0400 |
commit | 8ebeac656b548b9f5dcaa404b1b9efadcbcc8907 (patch) | |
tree | c3558383931d036b62502eb293de5c5d0f42aa11 | |
parent | f50b7ed2ccd32cb8024b78995183bf94834dac77 (diff) |
Update Debian installation documentation
-rw-r--r-- | docs/debian-installation.markdown | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/debian-installation.markdown b/docs/debian-installation.markdown index 68f4c334..147fe452 100644 --- a/docs/debian-installation.markdown +++ b/docs/debian-installation.markdown @@ -1,6 +1,27 @@ How to install Kanboard on Debian? ================================== +Debian 8 (Jessie) +----------------- + +Install Apache and PHP: + +```bash +apt-get update +apt-get install -y php5 php5-sqlite php5-gd unzip +service apache2 restart +``` + +Install Kanboard: + +```bash +cd /var/www/html +wget http://kanboard.net/kanboard-latest.zip +unzip kanboard-latest.zip +chown -R www-data:www-data kanboard/data +rm kanboard-latest.zip +``` + Debian 7 (Wheezy) ----------------- |