mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-01 18:21:30 +08:00
Tests the ASGI worker with direct HTTP requests without uWSGI protocol. Includes tests for GET, POST, query strings, path handling, keepalive, large bodies, and custom headers.
15 lines
273 B
YAML
15 lines
273 B
YAML
services:
|
|
gunicorn:
|
|
build:
|
|
context: ../../..
|
|
dockerfile: tests/docker/asgi/Dockerfile
|
|
command: >
|
|
gunicorn
|
|
--worker-class asgi
|
|
--bind 0.0.0.0:8000
|
|
--workers 1
|
|
--log-level debug
|
|
app:app
|
|
ports:
|
|
- "8080:8000"
|