diff options
author | David Baker <dave@matrix.org> | 2015-01-30 17:37:37 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-01-30 17:37:37 +0000 |
commit | 68bd7dfbb72ee37495bf180e277ace85aec6d34b (patch) | |
tree | 51091f4cf5e45c28f16ce767b7394a6d05e5bb4a /README.rst | |
parent | Add twisted to setup requires so it gets processed before setuptools_trial (diff) | |
download | synapse-68bd7dfbb72ee37495bf180e277ace85aec6d34b.tar.xz |
s/homeserver.config/homeserver.yaml/ because that's what synctl looks for.
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README.rst b/README.rst index 820b16d06c..cac387292a 100644 --- a/README.rst +++ b/README.rst @@ -114,7 +114,7 @@ To set up your homeserver, run (in your virtualenv, as before):: $ python -m synapse.app.homeserver \ --server-name machine.my.domain.name \ - --config-path homeserver.config \ + --config-path homeserver.yaml \ --generate-config Substituting your host and domain name as appropriate. @@ -273,9 +273,9 @@ For the first form, simply pass the required hostname (of the machine) as the $ python -m synapse.app.homeserver \ --server-name machine.my.domain.name \ - --config-path homeserver.config \ + --config-path homeserver.yaml \ --generate-config - $ python -m synapse.app.homeserver --config-path homeserver.config + $ python -m synapse.app.homeserver --config-path homeserver.yaml Alternatively, you can run ``synctl start`` to guide you through the process. @@ -295,9 +295,9 @@ SRV record, as that is the name other machines will expect it to have:: $ python -m synapse.app.homeserver \ --server-name YOURDOMAIN \ --bind-port 8448 \ - --config-path homeserver.config \ + --config-path homeserver.yaml \ --generate-config - $ python -m synapse.app.homeserver --config-path homeserver.config + $ python -m synapse.app.homeserver --config-path homeserver.yaml You may additionally want to pass one or more "-v" options, in order to |