Correct default POSTGRES_USER in Docker README (#4987)
Correct default POSTGRES_USER in Docker README
This commit is contained in:
parent
4a4d5c4fd6
commit
40810b81d2
|
@ -0,0 +1 @@
|
||||||
|
README updates: Corrected the default POSTGRES_USER. Added port forwarding hint in TLS section.
|
|
@ -60,7 +60,8 @@ Synapse requires a valid TLS certificate. You can do one of the following:
|
||||||
* Provide your own certificate and key (as
|
* Provide your own certificate and key (as
|
||||||
`${DATA_PATH}/${SYNAPSE_SERVER_NAME}.tls.crt` and
|
`${DATA_PATH}/${SYNAPSE_SERVER_NAME}.tls.crt` and
|
||||||
`${DATA_PATH}/${SYNAPSE_SERVER_NAME}.tls.key`, or elsewhere by providing an
|
`${DATA_PATH}/${SYNAPSE_SERVER_NAME}.tls.key`, or elsewhere by providing an
|
||||||
entire config as `${SYNAPSE_CONFIG_PATH}`).
|
entire config as `${SYNAPSE_CONFIG_PATH}`). In this case, you should forward
|
||||||
|
traffic to port 8448 in the container, for example with `-p 443:8448`.
|
||||||
|
|
||||||
* Use a reverse proxy to terminate incoming TLS, and forward the plain http
|
* Use a reverse proxy to terminate incoming TLS, and forward the plain http
|
||||||
traffic to port 8008 in the container. In this case you should set `-e
|
traffic to port 8008 in the container. In this case you should set `-e
|
||||||
|
@ -138,7 +139,7 @@ Database specific values (will use SQLite if not set):
|
||||||
**NOTE**: You are highly encouraged to use postgresql! Please use the compose
|
**NOTE**: You are highly encouraged to use postgresql! Please use the compose
|
||||||
file to make it easier to deploy.
|
file to make it easier to deploy.
|
||||||
* `POSTGRES_USER` - The user for the synapse postgres database. [default:
|
* `POSTGRES_USER` - The user for the synapse postgres database. [default:
|
||||||
`matrix`]
|
`synapse`]
|
||||||
|
|
||||||
Mail server specific values (will not send emails if not set):
|
Mail server specific values (will not send emails if not set):
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue