diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-24 21:52:37 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-24 21:52:37 -0400 |
commit | b76bd32e954852c5fae154bb15dfd3a16627d334 (patch) | |
tree | 2eba42af6a9723b344a45245924f651e934603c4 /docs/freebsd-installation.markdown | |
parent | 6f7feb5df21e4bec6ac9d64db1a00bc6b6034768 (diff) |
Change vagrant box for FreeBSD
Diffstat (limited to 'docs/freebsd-installation.markdown')
-rw-r--r-- | docs/freebsd-installation.markdown | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/freebsd-installation.markdown b/docs/freebsd-installation.markdown index 399afb4c..84b35ad8 100644 --- a/docs/freebsd-installation.markdown +++ b/docs/freebsd-installation.markdown @@ -7,7 +7,7 @@ Install from packages ```bash $ pkg update $ pkg upgrade -$ pkg install apache24 mod_php5 kanboard +$ pkg install apache24 mod_php56 kanboard ``` Enable Apache in your `/etc/rc.conf`: @@ -29,11 +29,19 @@ Then start Apache: $ service apache24 start ``` +Add symlink to Kanboard folder into your Apache docroot: + +```bash +cd /usr/local/www/apache24/data +ln -s /usr/local/www/kanboard +``` + Go to http://your.server.domain.tld/kanboard and enjoy! -*Note*: -If you want to use additional features like LDAP integration etc. +*Notes*: +- If you want to use additional features like LDAP integration etc. please install proper PHP module using pkg. +- You may have to adjust the permissions of the folder data Installing from ports --------------------- |