From 291db780d07ad563fbca30912bdc589f2d5a482d Mon Sep 17 00:00:00 2001 From: Emil Petersson Date: Thu, 14 Nov 2019 12:25:00 +0100 Subject: [PATCH] Do not override values in /usr/local/etc/php/conf.d/roundcube.ini --- webmails/roundcube/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webmails/roundcube/Dockerfile b/webmails/roundcube/Dockerfile index 107c2a35..ad326767 100644 --- a/webmails/roundcube/Dockerfile +++ b/webmails/roundcube/Dockerfile @@ -32,6 +32,8 @@ RUN apt-get update && apt-get install -y \ && cd html \ && rm -rf CHANGELOG INSTALL LICENSE README.md UPGRADING composer.json-dist installer \ && sed -i 's,mod_php5.c,mod_php7.c,g' .htaccess \ + && sed -i 's,^php_value.*post_max_size,#&,g' .htaccess \ + && sed -i 's,^php_value.*upload_max_filesize,#&,g' .htaccess \ && chown -R www-data: logs temp \ && rm -rf /var/lib/apt/lists