/
flask server with https

flask server with https

headerFTU.jpg

 

 

 

 

 

if __name__ == '__main__': # SSL context for local development context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2) context.load_cert_chain('cert.pem', 'key.pem') # Run the Flask app with SSL app.run( host='0.0.0.0', # Listen on all available interfaces port=443, # Standard HTTPS port ssl_context=context, debug=True # Enable debug mode for development )

 

 

 

 

 

Related content

modify sessions.py ( for requests/api.py)
modify sessions.py ( for requests/api.py)
More like this
install flask in virtual environement
install flask in virtual environement
More like this
issue with certificate_verify_failed
issue with certificate_verify_failed
More like this
certificate on pycharm postman and curl
certificate on pycharm postman and curl
More like this
frontend and backend webpage and flaskserver
frontend and backend webpage and flaskserver
More like this
Restful API server with flask and python
Restful API server with flask and python
More like this