diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-07-20 13:29:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 18:29:25 +0100 |
commit | 5ecf98f59ecb9eced2fada5cb74bb10a5700f9a3 (patch) | |
tree | 61f8123b7e3351a8d48d648797dcc933c1e44cb9 /docs | |
parent | Fix deprecation warning due to invalid escape sequences (#7895) (diff) | |
download | synapse-5ecf98f59ecb9eced2fada5cb74bb10a5700f9a3.tar.xz |
Change sample config's postgres user to synapse_user (#7889)
The [postgres setup docs](https://github.com/matrix-org/synapse/blob/develop/docs/postgres.md#set-up-database) recommend setting up your database with user `synapse_user`. However, uncommenting the postgres defaults in the sample config leave you with user `synapse`. This PR switches the sample config to recommend `synapse_user`. Took a me a second to figure this out, so assume this will beneficial to others.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 0e83f855bb..2e001fb674 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -685,7 +685,7 @@ caches: #database: # name: psycopg2 # args: -# user: synapse +# user: synapse_user # password: secretpassword # database: synapse # host: localhost |