Set php defaults to match nginx

Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
Eric Nemchik 2023-07-12 20:37:55 +00:00 committed by GitHub
parent 8be7743ecf
commit 0e7b613aea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -70,10 +70,10 @@ RUN \
} >> "/etc/php82/conf.d/00_opcache.ini" && \
{ \
echo 'memory_limit=512M'; \
echo 'upload_max_filesize=16G'; \
echo 'post_max_size=16G'; \
echo 'max_input_time=3600'; \
echo 'max_execution_time=3600'; \
echo 'upload_max_filesize=512M'; \
echo 'post_max_size=512M'; \
echo 'max_input_time=300'; \
echo 'max_execution_time=300'; \
echo 'output_buffering=0'; \
echo 'always_populate_raw_post_data=-1'; \
} >> "/etc/php82/conf.d/nextcloud.ini" && \

View File

@ -70,10 +70,10 @@ RUN \
} >> "/etc/php82/conf.d/00_opcache.ini" && \
{ \
echo 'memory_limit=512M'; \
echo 'upload_max_filesize=16G'; \
echo 'post_max_size=16G'; \
echo 'max_input_time=3600'; \
echo 'max_execution_time=3600'; \
echo 'upload_max_filesize=512M'; \
echo 'post_max_size=512M'; \
echo 'max_input_time=300'; \
echo 'max_execution_time=300'; \
echo 'output_buffering=0'; \
echo 'always_populate_raw_post_data=-1'; \
} >> "/etc/php82/conf.d/nextcloud.ini" && \