diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-29 20:00:53 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-29 20:00:53 -0400 |
commit | 6c711f696f73bc59813f6834ec241aef3b626cbd (patch) | |
tree | ded4f0e8c7f8c672414ff3f2f84eac0f6d9073e5 /doc/debian-installation.markdown | |
parent | ef087f5e22df1a0d97babef26aaf9b8960ee6d5d (diff) |
Include documentation in the application
Diffstat (limited to 'doc/debian-installation.markdown')
-rw-r--r-- | doc/debian-installation.markdown | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/doc/debian-installation.markdown b/doc/debian-installation.markdown new file mode 100644 index 00000000..147fe452 --- /dev/null +++ b/doc/debian-installation.markdown @@ -0,0 +1,63 @@ +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) +----------------- + +Install Apache and PHP: + +```bash +apt-get update +apt-get install -y php5 php5-sqlite php5-gd unzip +``` + +Install Kanboard: + +```bash +cd /var/www +wget http://kanboard.net/kanboard-latest.zip +unzip kanboard-latest.zip +chown -R www-data:www-data kanboard/data +rm kanboard-latest.zip +``` + +Debian 6 (Squeeze) +------------------ + +Install Apache and PHP: + +```bash +apt-get update +apt-get install -y libapache2-mod-php5 php5-sqlite php5-gd unzip +``` + +Install Kanboard: + +```bash +cd /var/www +wget http://kanboard.net/kanboard-latest.zip +unzip kanboard-latest.zip +chown -R www-data:www-data kanboard/data +rm kanboard-latest.zip +``` |