summaryrefslogtreecommitdiff
path: root/docs/centos-installation.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'docs/centos-installation.markdown')
-rw-r--r--docs/centos-installation.markdown33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/centos-installation.markdown b/docs/centos-installation.markdown
new file mode 100644
index 00000000..a4fad4bf
--- /dev/null
+++ b/docs/centos-installation.markdown
@@ -0,0 +1,33 @@
+Centos Installation
+===================
+
+Centos 6.5
+----------
+
+Install PHP:
+
+```bash
+yum install -y php php-mbstring php-pdo unzip
+```
+
+Enable short tags:
+
+- Edit the file `/etc/php.ini`
+- Change the line `short_open_tag = On`
+
+Restart Apache:
+
+```bash
+service httpd restart
+```
+
+Install Kanboard:
+
+```bash
+cd /var/www/html
+wget http://kanboard.net/kanboard-VERSION.zip
+chown -R apache:apache kanboard/data
+rm kanboard-VERSION.zip
+```
+
+Go to `http://your_server/kanboard/`. \ No newline at end of file