Install Taiga Ubuntu 16.04 Xenial Xerus Linux

First, spin up a new VM running Ubuntu 16.04 Xenial Xerus Linux: https://www.datasec.io/headless-virtualbox/ #Prerequisites: sudo apt-get update sudo apt-get install -y build-essential binutils-doc autoconf flex bison libjpeg-dev sudo apt-get install -y libfreetype6-dev zlib1g-dev libzmq3-dev libgdbm-dev libncurses5-dev sudo apt-get install -y automake libtool libffi-dev curl git tmux gettext sudo apt-get install -y nginx sudo apt-get install -y rabbitmq-server[…]

Office365 SMTP Settings

These settings worked to send mail through Office365 from Mautic: SMTP host: smtp.office365.com SMTP encryption type: TLS SMTP port: 587 SMTP authentication mode: Login Username: colin@datasec.io Send mail as: sales@datasec.io   *you need to setup a mailbox or distribution list in Office365 and delegate permissions to use alternate addresses.

NGINX PHP MySQL FreeBSD

Quick run through getting NGINX, PHP and MySQL running on FreeBSD 11.1 colin@openproject:~ % sudo pkg install -y nginx mysql56-server php56 php56-mysql … colin@openproject:~ % sudo sysrc mysql_enable=YES; sudo sysrc nginx_enable=YES; sudo sysrc php_fpm_enable=YES colin@openproject:~ % sudo mv /usr/local/etc/php-fpm.conf ./php-fpm.conf.bak colin@openproject:~ % sed s/’listen = 127.0.0.1:9000’/’listen = \/var\/run\/php-fpm.sock’/g ./php-fpm.conf.bak | sed s/’;listen.owner = www’/’listen.owner =[…]

Add Sudo User FreeBSD

Add a new wheel user, then allow wheel to run sudo as root: root@colinbsd: # pkg install sudo root@colinbsd: # sed s/’#%wheel ALL=(ALL) ALL’/’%wheel ALL=(ALL) ALL’/g /usr/local/etc/sudoers > sudoers_new root@colinbsd: # cp /usr/local/etc/sudoers ./sudoers.BAK root@colinbsd: # mv ./sudoers_new /usr/local/etc/sudoers   Or you can visudo and add a user under root… Or read https://www.michaelwlucas.com/tools/sudo (todo) and do it right

Headless VirtualBox

Sometimes I need to run a headless VirtualBox VM. Here’s a couple scripts to build one up and get one running with VNC access: root@colinbsd:/prodVMs # cat makeOpenProj VBoxManage createvm –name openproject –ostype FreeBSD_64 –register VBoxManage modifyvm openproject –memory 2048 –ioapic on –cpus 4 –chipset PIIX3 –nic1 bridged –nictype1 82540EM –bridgeadapter1 bge0 VBoxManage createhd –filename[…]