Serving over HTTPS with Gunicorn/Flask: ERR_CERT_AUTHORITY_INVALID – Nginx
Looking for a quick way to serve an API over HTTPS for testing purposes. The API app is created using flask and being served on port 443 using gunicorn. gunicorn --certfile=server.crt --keyfile=server.key --bind 0.0.0.0:443 wsgi:app When my React app (served…