43 lines
939 B
Nix
43 lines
939 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
|
||
services.nginx = {
|
||
enable = true;
|
||
virtualHosts."localhost" = {
|
||
root = "/var/www";
|
||
locations = {
|
||
"~ \\.php$".extraConfig = ''
|
||
fastcgi_pass unix:${config.services.phpfpm.pools.mypool.socket};
|
||
fastcgi_index index.php;
|
||
'';
|
||
};
|
||
};
|
||
};
|
||
|
||
services.mysql = {
|
||
enable = true;
|
||
package = pkgs.mariadb;
|
||
};
|
||
|
||
services.phpfpm.pools.mypool = {
|
||
user = "nobody";
|
||
settings = {
|
||
"pm" = "dynamic";
|
||
"listen.owner" = config.services.nginx.user;
|
||
"pm.max_children" = 5;
|
||
"pm.start_servers" = 2;
|
||
"pm.min_spare_servers" = 1;
|
||
"pm.max_spare_servers" = 3;
|
||
"pm.max_requests" = 500;
|
||
};
|
||
};
|
||
|
||
|
||
|
||
}
|