diff options
-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) ----------------- |