diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-31 22:05:47 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-31 22:05:47 -0400 |
commit | dcc22d938b26aceae04fdd2fb91a9a2750ea6305 (patch) | |
tree | 04d6f0feaee873338686a808319dcc115e824031 /docs/centos-installation.markdown | |
parent | dde85569f81ef6375894b413b56c771f1328284b (diff) |
Update installation instructions for Debian and Centos
Diffstat (limited to 'docs/centos-installation.markdown')
-rw-r--r-- | docs/centos-installation.markdown | 33 |
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 |