12 ms·
How do people deploy this framework typically - speaking for myself, I found NGINX Unit somewhat fiddly.
by cbzbc 1y ago
How do people deploy this framework typically - speaking for myself, I found NGINX Unit somewhat fiddly.
- devjab 1y agoWith uvicorn.
- intalentive 1y agouvicorn systemd service behind nginx reverse proxy
- indigodaddy 1y agoOr just docker/uvicorn
- brokegrammer 1y agoI tend to deploy all Python based apps using gunicorn behind a caddy proxy. Take a look at the compose.yml https://github.com/confuzeus/simple-django/blob/master/ansible/roles/django/files/compose.yml https://github.com/confuzeus/simple-django/blob/master/ansib... Deployment is as simple as `docker compose pull && docker compose up -d`.