Loading CHANGELOG.md +5 −0 Original line number Diff line number Diff line CHANGELOG ========= 6.1.1 (17/07/2025) ------------------- - Utilisation du port 80 par défaut, au lieu du 8000 6.1.0 (17/07/2025) ------------------- Loading odconv/Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -33,11 +33,11 @@ USER appuser ENV HOME=/home/appuser # Expose the port EXPOSE 8000 EXPOSE 80 # Default environment variables ENV WORKERS=4 ENV TIMEOUT=300 # Start command: Gunicorn with Uvicorn workers, long timeouts, and debug logging CMD ["sh", "-c", "gunicorn -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --workers ${WORKERS} --timeout ${TIMEOUT} --log-level debug main:app"] No newline at end of file CMD ["sh", "-c", "gunicorn -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:80 --workers ${WORKERS} --timeout ${TIMEOUT} --log-level debug main:app"] No newline at end of file src/Document.php +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ class Document private string $host = '127.0.0.1'; private int $port = 8000; private int $port = 80; private array $formatters = []; Loading Loading
CHANGELOG.md +5 −0 Original line number Diff line number Diff line CHANGELOG ========= 6.1.1 (17/07/2025) ------------------- - Utilisation du port 80 par défaut, au lieu du 8000 6.1.0 (17/07/2025) ------------------- Loading
odconv/Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -33,11 +33,11 @@ USER appuser ENV HOME=/home/appuser # Expose the port EXPOSE 8000 EXPOSE 80 # Default environment variables ENV WORKERS=4 ENV TIMEOUT=300 # Start command: Gunicorn with Uvicorn workers, long timeouts, and debug logging CMD ["sh", "-c", "gunicorn -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --workers ${WORKERS} --timeout ${TIMEOUT} --log-level debug main:app"] No newline at end of file CMD ["sh", "-c", "gunicorn -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:80 --workers ${WORKERS} --timeout ${TIMEOUT} --log-level debug main:app"] No newline at end of file
src/Document.php +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ class Document private string $host = '127.0.0.1'; private int $port = 8000; private int $port = 80; private array $formatters = []; Loading