How can I set cipher suits for Flask application

Viewed 10

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)
0 Answers
Related