aboutsummaryrefslogtreecommitdiff
path: root/etc/readme.md
blob: 2d01f059801036f1e0a257771ac4ba89ffdfe4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## How to run the services manually

### php-fpm
```sh
php-fpm --fpm-config php/php-fpm.conf
```

### nginx
```sh
nginx -p nginx/ -c nginx.conf
```

### postgresql
```sh
# setup
initdb -D /path/to/postgres.d
createdb -h localhost -p 5432 -U $(whoami) bugtracker

# starting
pg_ctl -D postgres/ -l logfile start

# connecting
psql -h localhost bugtracker
```