diff options
author | David Baker <dbkr@matrix.org> | 2014-10-02 14:09:27 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-10-02 14:09:27 +0100 |
commit | d694619a953adf6254e3960d2a4ec973d31dfcae (patch) | |
tree | 378784559d4edbb9db279a83eb34362dc2adcb67 /synapse/config/_base.py | |
parent | Trivial formatting fixes for README. (diff) | |
download | synapse-d694619a953adf6254e3960d2a4ec973d31dfcae.tar.xz |
Fix ncorrect ports in documentation and add notes on how generate-config also generates certs bound to whatever hostname you give with --generate-config.
SYN-87 #resolved
Diffstat (limited to 'synapse/config/_base.py')
-rw-r--r-- | synapse/config/_base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index 809f9c922b..b3aeff327c 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -123,7 +123,8 @@ class Config(object): # style mode markers into the file, to hint to people that # this is a YAML file. yaml.dump(config, config_file, default_flow_style=False) - print "A config file has been generated in %s (your server name is '%s'). Please review this file and customise it to your needs." % (config_args.config_path, config['server_name']) + print "A config file has been generated in %s for server name '%s') with corresponding SSL keys and self-signed certificates. Please review this file and customise it to your needs." % (config_args.config_path, config['server_name']) + print "If this server name is incorrect, you will need to regenerate the SSL certificates" sys.exit(0) return cls(args) |