12 lines
535 B
Org Mode
12 lines
535 B
Org Mode
* Generating the matrix configuration
|
|
|
|
To generate a fresh homeserver.yaml, you can use the generate command. (See the documentation for more information.) You will need to specify appropriate values for at least the SYNAPSE_SERVER_NAME and SYNAPSE_REPORT_STATS environment variables. For example:
|
|
|
|
docker-compose run --rm -e SYNAPSE_SERVER_NAME=my.matrix.host -e SYNAPSE_REPORT_STATS=yes synapse generate
|
|
|
|
(This will also generate necessary signing keys.)
|
|
|
|
Then, customize your configuration and run the server:
|
|
|
|
docker-compose up -d
|