About 2,710,000 results
Open links in new tab
  1. ssl - Running gunicorn on https? - Stack Overflow

    Gunicorn now supports SSL, as of version 17.0. You can configure it to listen on https like this: $ gunicorn --certfile=server.crt --keyfile=server.key test:app If you were using --bind to listen on …

  2. django - How to stop gunicorn properly - Stack Overflow

    Jan 30, 2013 · I'm starting gunicorn with the Django command python manage.py run_gunicorn. How can I stop gunicorn properly? Note: I have a semi-automated server deployment with …

  3. Gunicorn Workers and Threads - Stack Overflow

    Questions So where do threads fit in? Can I add threads to both the sync and async worker types? What is the best option around gunicorn workers? Should I wish to place gunicorn in …

  4. What is the correct way to leave gunicorn running?

    gunicorn app:app But when I logout of the server the gunicorn process exits? What is the correct way to make sure it stay running for Nginx to connect to, and restarts if it crashes?

  5. What is the difference between Uvicorn and Gunicorn+Uvicorn?

    Feb 25, 2021 · Gunicorn itself is not compatible with FastAPI because FastAPI uses the fresh ASGI standard. Uvicorn is an application server that supports the ASGI protocol. It also has an …

  6. python - Does FastAPI still need Gunicorn? - Stack Overflow

    Jul 8, 2025 · For a long time Gunicorn+Uvicorn was the default setup for running FastAPI in production. However, I recently came across a blog post saying: In the meantime, this …

  7. gunicorn: how to resolve "WORKER TIMEOUT"? - Stack Overflow

    I have setup gunicorn with 3 workers, 30 worker connections and using eventlet worker class. It is set up behind Nginx. After every few requests, I see this in the logs. [ERROR] gunicorn.error: …

  8. ModuleNotFoundError: No module named 'gunicorn' - Stack …

    Jun 14, 2020 · ModuleNotFoundError: No module named 'gunicorn' Asked 5 years, 5 months ago Modified 3 years, 9 months ago Viewed 10k times

  9. python - Where is the Gunicorn config file? - Stack Overflow

    Aug 21, 2012 · The gunicorn documentation talks about editing the config files, but I have no idea where it is. Probably a simple answer :) I'm on Amazon Linux AMI.

  10. What is the purpose of using nginx with gunicorn? [duplicate]

    Mar 27, 2017 · Gunicorn is an "application server" for a python program while nginx is quite an optimized web server (with many features and quite complex configuration options) which is …