Merge pull request #278223 from pks-t/pks-nextcloud-disable-php-output-buffering

nixos/nextcloud: disable output buffering
This commit is contained in:
Maximilian Bosch 2024-01-02 16:44:41 +01:00 committed by GitHub
commit 1a08a38091
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@ let
jsonFormat = pkgs.formats.json {};
defaultPHPSettings = {
output_buffering = "0";
short_open_tag = "Off";
expose_php = "Off";
error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT";