## Starting services ```sh php-fpm --fpm-config php/php-fpm.conf nginx -p nginx/ -c nginx.conf ``` ## postgresql ### setup ```sh $ initdb -D /path/to/postgres.d $ createdb -h localhost -p 5432 -U red bugtracker # starting pg_ctl -D /home/red/etc/postgres/ -l logfile start # connecting psql -h localhost bugtracker ```