aboutsummaryrefslogtreecommitdiff
path: root/usage.md
blob: 1d25ff9395eaef33b63885edffb2e0e754f1a15a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## 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
```