# HG changeset patch # User IBBoard # Date 1683549686 -3600 # Node ID 83fbddb56de101b4fe2996885cc6ccfb0050421a # Parent c6c9a2cfcfbd0d251683c02b3a565b9b884757bb Increase PHP limits Required to install/upgrade NextCloud on the test VPS. Servers are bigger now, so it should be okay diff -r c6c9a2cfcfbd -r 83fbddb56de1 modules/website/files/php.conf --- a/modules/website/files/php.conf Mon May 08 11:48:41 2023 +0100 +++ b/modules/website/files/php.conf Mon May 08 13:41:26 2023 +0100 @@ -4,7 +4,7 @@ Require all denied - + # Don't wrap in an because we'd rather it failed diff -r c6c9a2cfcfbd -r 83fbddb56de1 modules/website/manifests/php.pp --- a/modules/website/manifests/php.pp Mon May 08 11:48:41 2023 +0100 +++ b/modules/website/manifests/php.pp Mon May 08 13:41:26 2023 +0100 @@ -43,8 +43,8 @@ 'PHP/default_charset' => 'UTF-8', 'PHP/pcre.jit' => $pcre_jit, # Space isn't scarce these days - increase default sizes - 'PHP/upload_max_filesize' => "8M", - 'PHP/post_max_size' => "8M", + 'PHP/upload_max_filesize' => "16M", + 'PHP/post_max_size' => "16M", 'Data/date.timezone' => 'UTC', }, cli_settings => { @@ -64,6 +64,7 @@ ini_prefix => '20-', }, opcache => { + ensure => present, ini_prefix => '10-', zend => true, settings => {