Merge pull request #78 from linuxserver/php-process-limit

Increase php max workers to fix Android uploading
This commit is contained in:
Homer 2024-04-07 17:34:25 +01:00 committed by GitHub
commit 9803df80dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 0 deletions

View file

@ -34,6 +34,8 @@ RUN \
php83-zip \
poppler-utils \
re2c && \
echo "**** modify php-fpm process limits ****" && \
sed -i 's/pm.max_children = 5/pm.max_children = 32/' /etc/php83/php-fpm.d/www.conf && \
echo "**** download piwigo ****" && \
if [ -z ${PIWIGO_RELEASE+x} ]; then \
PIWIGO_RELEASE=$(curl -sX GET "https://api.github.com/repos/Piwigo/Piwigo/releases/latest" \

View file

@ -34,6 +34,8 @@ RUN \
php83-zip \
poppler-utils \
re2c && \
echo "**** modify php-fpm process limits ****" && \
sed -i 's/pm.max_children = 5/pm.max_children = 32/' /etc/php83/php-fpm.d/www.conf && \
echo "**** download piwigo ****" && \
if [ -z ${PIWIGO_RELEASE+x} ]; then \
PIWIGO_RELEASE=$(curl -sX GET "https://api.github.com/repos/Piwigo/Piwigo/releases/latest" \

View file

@ -37,6 +37,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "07.04.24:", desc: "Increase php workers to fix Android uploading in bulk"}
- { date: "02.03.24:", desc: "Fix HEIC file format support."}
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19 with php 8.3."}
- { date: "12.12.23:", desc: "Rebase to Alpine 3.18." }