diff options
-rw-r--r-- | Vagrantfile | 5 | ||||
-rw-r--r-- | docs/freebsd-installation.markdown | 14 | ||||
-rw-r--r-- | docs/vagrant.markdown | 2 |
3 files changed, 15 insertions, 6 deletions
diff --git a/Vagrantfile b/Vagrantfile index d745fc37..99beeb2e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -113,8 +113,9 @@ Vagrant.configure("2") do |config| end config.vm.define "freebsd10" do |m| - m.vm.box = "chef/freebsd-10.0" - m.vm.synced_folder ".", "/usr/local/www/apache24/data", type: "rsync", owner: "www", group: "www" + m.vm.box = "freebsd/FreeBSD-10.2-STABLE" + m.vm.base_mac = "080027D14C66" + m.ssh.shell = "sh" end config.vm.network :forwarded_port, guest: 80, host: 8001 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 --------------------- diff --git a/docs/vagrant.markdown b/docs/vagrant.markdown index 679d5d80..beebb323 100644 --- a/docs/vagrant.markdown +++ b/docs/vagrant.markdown @@ -28,7 +28,7 @@ vagrant box add chef/debian-7.6 vagrant box add chef/debian-6.0.10 vagrant box add chef/centos-7.0 vagrant box add chef/centos-6.5 -vagrant box add chef/freebsd-10.0 +vagrant box add freebsd/FreeBSD-10.2-STABLE ``` ### Example with Ubuntu and Sqlite |