Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dockerfiles/entrypoints/proxito.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

../../docker/common.sh

CMD="uv run gunicorn readthedocs.wsgi:application -w 3 -b 0.0.0.0:8000 --max-requests=10000 --timeout=0"
CMD="uv run gunicorn readthedocs.wsgi:application -c python:readthedocs.gunicorn_conf -w 3 -b 0.0.0.0:8000 --max-requests=10000 --timeout=0"

if [ -n "${DOCKER_NO_RELOAD}" ]; then
echo "Running process with no reload"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/entrypoints/web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ then
uv run python3 manage.py loaddata test_data
fi

CMD="uv run gunicorn readthedocs.wsgi:application -w 3 -b 0.0.0.0:8000 --max-requests=10000 --timeout=0"
CMD="uv run gunicorn readthedocs.wsgi:application -c python:readthedocs.gunicorn_conf -w 3 -b 0.0.0.0:8000 --max-requests=10000 --timeout=0"

if [ -n "${DOCKER_NO_RELOAD}" ]; then
echo "Running process with no reload"
Expand Down
Loading