run app on ipv4 localhost, chrome on osx disables ipv6 if no global ipv6 address is present

This commit is contained in:
j 2015-02-22 16:53:06 +05:30
commit 689daa37db
4 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ ui = pdict(os.path.join(config_path, 'ui.json'), config['user']['ui'])
server = pdict(os.path.join(config_path, 'server.json'))
server_defaults = {
'port': 9842,
'address': '::1',
'address': '127.0.0.1',
'node_port': 9851,
'node_address': '',
'extract_text': True,