-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx-php.nix
66 lines (61 loc) · 1.59 KB
/
nginx-php.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{ config, lib, pkgs, ... }:
let
wwwRoot = ./wwwroot;
phpPkgNames = [ "php80" "php81" "php82" ];
phpPools =
let
f = phpPkgName: {
name = phpPkgName;
value = {
user = "php";
phpPackage = pkgs.${phpPkgName};
settings = {
"listen.owner" = config.services.nginx.user;
"pm" = "dynamic";
"pm.max_children" = 32;
"pm.max_requests" = 500;
"pm.start_servers" = 2;
"pm.min_spare_servers" = 1;
"pm.max_spare_servers" = 5;
};
};
};
in
builtins.listToAttrs (map f phpPkgNames);
nginxLocations =
let
f = phpPkgName: {
name = "/${phpPkgName}";
value = {
root = wwwRoot;
extraConfig = ''
rewrite ^/${phpPkgName}(.*)$ /$1 break;
include ${pkgs.nginx}/conf/fastcgi_params;
include ${pkgs.nginx}/conf/fastcgi.conf;
fastcgi_pass unix:${config.services.phpfpm.pools.${phpPkgName}.socket};
fastcgi_index index.php;
fastcgi_split_path_info ^(.+?\.php)(|/.*)$;
fastcgi_param SCRIPT_FILENAME ${wwwRoot}$fastcgi_script_name;
'';
};
};
in
builtins.listToAttrs (map f phpPkgNames);
in
{
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
services = {
phpfpm.pools = phpPools;
nginx = {
enable = true;
virtualHosts.localhost.locations = nginxLocations;
};
};
users.users.php = {
isSystemUser = true;
group = "php";
};
users.groups.php = {};
}