We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50abb55 commit 9307702Copy full SHA for 9307702
Dockerfile
@@ -16,6 +16,9 @@ RUN apt-get update && apt-get install -y \
16
&& docker-php-ext-install -j$(nproc) gd pdo pdo_mysql zip mysqli intl
17
RUN a2enmod rewrite && a2enmod deflate && a2enmod filter && a2enmod expires
18
19
+# Custom php.ini
20
+COPY php/custom-php.ini /usr/local/etc/php/conf.d/
21
+
22
# Locale
23
ENV LC_ALL C.UTF-8
24
ENV LANG C.UTF-8
php/custom-php.ini
@@ -0,0 +1,4 @@
1
+[php]
2
+upload_max_filesize = 350M
3
+post_max_size = 350M
4
+memory_limit = 400M
0 commit comments