|
@@ -6,6 +6,9 @@ find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?date.timezone#s#^.*
|
|
|
find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?post_max_size#s#^.*#post_max_size = 32M#" {} \;
|
|
find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?post_max_size#s#^.*#post_max_size = 32M#" {} \;
|
|
|
find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?upload_max_filesize#s#^.*#upload_max_filesize = 32M#" {} \;
|
|
find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?upload_max_filesize#s#^.*#upload_max_filesize = 32M#" {} \;
|
|
|
|
|
|
|
|
|
|
+# Disable built-in updates when using Docker, as the full image is supposed to be updated instead.
|
|
|
|
|
+sed -r -i "\\#disable_update#s#^.*#\t'disable_update' => true,#" ./config.default.php
|
|
|
|
|
+
|
|
|
if [ -n "$LISTEN" ]; then
|
|
if [ -n "$LISTEN" ]; then
|
|
|
find /etc/apache2/ -type f -name FreshRSS.Apache.conf -exec sed -r -i "\\#^Listen#s#^.*#Listen $LISTEN#" {} \;
|
|
find /etc/apache2/ -type f -name FreshRSS.Apache.conf -exec sed -r -i "\\#^Listen#s#^.*#Listen $LISTEN#" {} \;
|
|
|
fi
|
|
fi
|