14 lines
273 B
Nix
14 lines
273 B
Nix
{ config, ... }:
|
|
{
|
|
locations."/" = {
|
|
index = "index.php";
|
|
};
|
|
locations."~ \.php$" = {
|
|
extraConfig = ''
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass unix:${config.services.phpfpm.pools.main.listen};
|
|
fastcgi_index index.php;
|
|
'';
|
|
};
|
|
}
|