Nextcloud: Difference between revisions

imported>Onny
Move section to configuration part
imported>Onny
mNo edit summary
Line 112: Line 112:
Test mails can be send via administration interface in the menu section "Basic settings".
Test mails can be send via administration interface in the menu section "Basic settings".


=== Increase max upload file size ===
=== Max upload file size ===


To increase the maximum upload file size, for example to 16 GB, add following parameters to the <code>phpOptions</code> option of the Nextcloud module
To increase the maximum upload file size, for example to 1 GB, add following parameters to the <code>phpOptions</code> option of the Nextcloud module


{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
Line 120: Line 120:
   [...]
   [...]
   phpOptions = {
   phpOptions = {
     upload_max_filesize = "16G";
     upload_max_filesize = "1G";
     post_max_size = "16G";
     post_max_size = "1G";
   };
   };
};
};