WordPress: Difference between revisions

imported>Onny
Add section on max upload filesize config
imported>Onny
mNo edit summary
Line 118: Line 118:
=== Max upload filesize ===
=== Max upload filesize ===


The following example configuration changes the max upload filesize limit to 16GB for the Wordpress instance with the hostname <code>localhost</code>. Change the [[phpfpm]] pool name according to your hostname.
The following example configuration changes the max upload filesize limit to 1GB for the Wordpress instance with the hostname <code>localhost</code>. Change the [[phpfpm]] pool name according to your hostname.


<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
services.phpfpm.pools."wordpress-localhost".phpOptions = ''
services.phpfpm.pools."wordpress-localhost".phpOptions = ''
   upload_max_filesize=16G
   upload_max_filesize=1G
   post_max_size=16G
   post_max_size=1G
'';
'';
</syntaxHighlight>
</syntaxHighlight>