How should I translate app.run() to sockio.run() with SSL?
I have below app start code to run with flask development server
if __name__=='__main__':
app.run(ssl_context=(ssl_cert, ssl_key))
I am now trying to start it with socketio like below
if __name__=='__main__':
socketio.run(app, host='0.0.0.0', port=80, debug=True)
However, I cannot figure out how to pass cert into this call.
What do I have to do to make this work?