Skip to content

Commit

Permalink
disable eventlet wgsi server
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefal committed Jun 11, 2024
1 parent af70a5b commit ab1351b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_app/gnss_rproxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def logout():

app.secret_key = rtkbaseconfig.get_secret_key()
#socketio.run(app, host = "::", port = args.port or rtkbaseconfig.get("general", "web_port", fallback=80), debug=args.debug) # IPv6 "::" is mapped to IPv4
wsgi.server(eventlet.listen(("0.0.0.0", int(rtkbaseconfig.get("main", "gnss_rcv_web_proxy_port", fallback=9090)))), app, log_output=False)
#wsgi.server(eventlet.listen(("0.0.0.0", int(rtkbaseconfig.get("main", "gnss_rcv_web_proxy_port", fallback=9090)))), app, log_output=False)

gunicorn_options = {
'bind': ['%s:%s' % ('0.0.0.0', rtkbaseconfig.get("main", "gnss_rcv_web_proxy_port", fallback=9090)),
Expand Down

0 comments on commit ab1351b

Please sign in to comment.