morph-rc/configuration/presets/nginx/php.nix

14 lines
273 B
Nix
Raw Normal View History

2019-08-07 13:01:04 +02:00
{ 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;
'';
};
}