Skip to content

Commit

Permalink
Increase limits for upload and post
Browse files Browse the repository at this point in the history
Ref: #238
Closes: #240
Closes: #239
Closes: #233
Closes: #189
  • Loading branch information
williamdes committed Sep 30, 2019
1 parent f522725 commit e9d1da4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apache/Dockerfile
Expand Up @@ -51,6 +51,8 @@ RUN { \
echo 'allow_url_fopen = Off'; \
echo 'max_execution_time = 600'; \
echo 'memory_limit = 512M'; \
echo 'upload_max_filesize = 10G'; \
echo 'post_max_size = 10G'; \
} > /usr/local/etc/php/conf.d/phpmyadmin-misc.ini

# Calculate download URL
Expand Down
2 changes: 2 additions & 0 deletions fpm-alpine/Dockerfile
Expand Up @@ -48,6 +48,8 @@ RUN { \
echo 'allow_url_fopen = Off'; \
echo 'max_execution_time = 600'; \
echo 'memory_limit = 512M'; \
echo 'upload_max_filesize = 10G'; \
echo 'post_max_size = 10G'; \
} > /usr/local/etc/php/conf.d/phpmyadmin-misc.ini

# Calculate download URL
Expand Down
2 changes: 2 additions & 0 deletions fpm/Dockerfile
Expand Up @@ -51,6 +51,8 @@ RUN { \
echo 'allow_url_fopen = Off'; \
echo 'max_execution_time = 600'; \
echo 'memory_limit = 512M'; \
echo 'upload_max_filesize = 10G'; \
echo 'post_max_size = 10G'; \
} > /usr/local/etc/php/conf.d/phpmyadmin-misc.ini

# Calculate download URL
Expand Down

0 comments on commit e9d1da4

Please sign in to comment.