Im trying to set ciphers to my Flask application, how can i do that?
this is how i run my Flask with https which is working:
path = "/tmp"
app.run(ssl_context=(f'{path}/cert.cert', f'{path}/key.key'), host='0.0.0.0', use_reloader=True, port=port)