remove listening_ip and making it static at 0.0.0.0. also changing default port to 8081

This commit is contained in:
jbruce12000 2022-10-16 13:32:21 -04:00
parent 66c96737a5
commit 30716f3bb5
2 changed files with 2 additions and 3 deletions

View File

@ -13,8 +13,7 @@ log_level = logging.INFO
log_format = '%(asctime)s %(levelname)s %(name)s: %(message)s'
### Server
listening_ip = "0.0.0.0"
listening_port = 8082
listening_port = 8081
########################################################################
# Cost Information

View File

@ -285,7 +285,7 @@ def get_config():
def main():
ip = config.listening_ip
ip = "0.0.0.0"
port = config.listening_port
log.info("listening on %s:%d" % (ip, port))