X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=nixops%2Fmodules%2Fwebsites%2Fphpfpm%2Fpool-options.nix;fp=nixops%2Fmodules%2Fwebsites%2Fphpfpm%2Fpool-options.nix;h=0000000000000000000000000000000000000000;hb=f40f5b235b890f46770a22f005f8a0f664cf0562;hp=cc688c2c48a251c8594be15504187213d55f3eee;hpb=1480d60775dcd38b33abd367a91cd1b865aacc54;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/nixops/modules/websites/phpfpm/pool-options.nix b/nixops/modules/websites/phpfpm/pool-options.nix deleted file mode 100644 index cc688c2..0000000 --- a/nixops/modules/websites/phpfpm/pool-options.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ lib }: - -with lib; { - - options = { - - listen = mkOption { - type = types.str; - example = "/path/to/unix/socket"; - description = '' - The address on which to accept FastCGI requests. - ''; - }; - - extraConfig = mkOption { - type = types.lines; - example = '' - user = nobody - pm = dynamic - pm.max_children = 75 - pm.start_servers = 10 - pm.min_spare_servers = 5 - pm.max_spare_servers = 20 - pm.max_requests = 500 - ''; - - description = '' - Extra lines that go into the pool configuration. - See the documentation on php-fpm.conf for - details on configuration directives. - ''; - }; - }; -} -