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". | ||
=== | === Max upload file size === | ||
To increase the maximum upload file size, for example to | 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 = " | upload_max_filesize = "1G"; | ||
post_max_size = " | post_max_size = "1G"; | ||
}; | }; | ||
}; | }; | ||