Commit d8964ebc authored by Marin Jankovski's avatar Marin Jankovski

Merge branch 'docs/build-39-correct-postgres-password-hash' into 'master'

Explain how to generate POSTGRESQL_PASSWORD_HASH

Closes gitlab-org/build/team-tasks#39

See merge request gitlab-org/gitlab-ee!3404
parents 47d44b3c 4cce6f41
......@@ -113,8 +113,13 @@ server nodes.
We will need the following password information for the application's database user:
- `POSTGRESQL_USERNAME`. Defaults to `gitlab`
- `POSTGRESQL_USER_PASSWORD`. The password for the database user
- `POSTGRESQL_PASSWORD_HASH`. The md5 hash of POSTGRESQL_USER_PASSWORD
- `POSTGRESQL_PASSWORD_HASH`. This is a hash generated out of the username/password pair.
Can be generated with:
```sh
echo -n 'POSTGRESQL_USER_PASSWORDPOSTGRESQL_USERNAME' | md5sum
```
#### Pgbouncer
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment