Skip to content
Snippets Groups Projects
Unverified Commit 5ecf98f5 authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

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.
parent 43802073
Branches
Tags
No related merge requests found
Change the sample config postgres user section to use `synapse_user` instead of `synapse` to align with the documentation.
\ No newline at end of file
...@@ -685,7 +685,7 @@ caches: ...@@ -685,7 +685,7 @@ caches:
#database: #database:
# name: psycopg2 # name: psycopg2
# args: # args:
# user: synapse # user: synapse_user
# password: secretpassword # password: secretpassword
# database: synapse # database: synapse
# host: localhost # host: localhost
......
...@@ -55,7 +55,7 @@ DEFAULT_CONFIG = """\ ...@@ -55,7 +55,7 @@ DEFAULT_CONFIG = """\
#database: #database:
# name: psycopg2 # name: psycopg2
# args: # args:
# user: synapse # user: synapse_user
# password: secretpassword # password: secretpassword
# database: synapse # database: synapse
# host: localhost # host: localhost
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment