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 /docs/debian-installation.markdown | |
parent | ef087f5e22df1a0d97babef26aaf9b8960ee6d5d (diff) |
Include documentation in the application
Diffstat (limited to 'docs/debian-installation.markdown')
-rw-r--r-- | docs/debian-installation.markdown | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/docs/debian-installation.markdown b/docs/debian-installation.markdown deleted file mode 100644 index 147fe452..00000000 --- a/docs/debian-installation.markdown +++ /dev/null @@ -1,63 +0,0 @@ -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 -``` |