fix: set PHP memory_limit to 512M, remove ineffective env var

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christopher Mühl 2026-04-08 11:56:38 +02:00
parent 3ed0860565
commit 2d8ec2a5ac
No known key found for this signature in database
GPG key ID: 925AC7D69955293F

View file

@ -11,6 +11,7 @@
pkgs = nixpkgs.legacyPackages.${system};
php = pkgs.php82.buildEnv {
extensions = { enabled, all }: enabled ++ (with all; [ xsl pdo_mysql ]);
extraConfig = "memory_limit = 512M";
};
in
{