Increase upload file size limits
This commit is contained in:
parent
d9f038ffca
commit
3450ffd8de
1 changed files with 6 additions and 1 deletions
|
@ -7,7 +7,12 @@
|
|||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
|
||||
php = pkgs.php83;
|
||||
php = pkgs.php83.buildEnv {
|
||||
extraConfig = ''
|
||||
upload_max_filesize = 20M;
|
||||
post_max_size = 20M;
|
||||
'';
|
||||
};
|
||||
phpPackages = pkgs.php83Packages;
|
||||
in
|
||||
with pkgs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue