[twconfig] Set default value for "interface" to 0.0.0.0
authorDenis Laxalde <denis.laxalde@logilab.fr>
Fri, 21 Oct 2016 18:03:06 +0200
changeset 11739 bc864c80ec36
parent 11738 dc081e31501e
child 11740 dabbb2a4a493
[twconfig] Set default value for "interface" to 0.0.0.0 This value means "all IP addresses on this host", which seems to fit with "default to everywhere" that's documented. Closes #15135610.
cubicweb/etwist/twconfig.py
--- a/cubicweb/etwist/twconfig.py	Wed Oct 12 17:03:02 2016 +0200
+++ b/cubicweb/etwist/twconfig.py	Fri Oct 21 18:03:06 2016 +0200
@@ -44,7 +44,7 @@
           }),
         ('interface',
          {'type' : 'string',
-          'default': "",
+          'default': '0.0.0.0',
           'help': 'http server address on which to listen (default to everywhere)',
           'group': 'web', 'level': 1,
           }),