Merge pull request #2630 from andreagrandi/fix-default-bind-address

Set default listening address to 127.0.0.1
This commit is contained in:
Justin Mayer 2019-10-05 10:29:46 -07:00 committed by GitHub
commit 7aa2f6c142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,7 +170,7 @@ DEFAULT_CONFIG = {
'WRITE_SELECTED': [],
'FORMATTED_FIELDS': ['summary'],
'PORT': 8000,
'BIND': '',
'BIND': '127.0.0.1',
}
PYGMENTS_RST_OPTIONS = None