summary refs log tree commit diff
path: root/nixos/modules/services/web-servers/apache-httpd
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-04-29 15:26:20 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-04-29 15:26:20 +0900
commita8bc5b67f8caf82585932eab14cb99fcbc4d595b (patch)
tree46046662f9371543be3755241782aacb341ee0e1 /nixos/modules/services/web-servers/apache-httpd
parent44acb6833bfdac83495131f2bc5e7d3103a46863 (diff)
downloadnixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar.gz
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar.bz2
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar.lz
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar.xz
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.tar.zst
nixlib-a8bc5b67f8caf82585932eab14cb99fcbc4d595b.zip
php: add default php.ini
Diffstat (limited to 'nixos/modules/services/web-servers/apache-httpd')
-rw-r--r--nixos/modules/services/web-servers/apache-httpd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix
index 7953729c00cd..c23897192b4c 100644
--- a/nixos/modules/services/web-servers/apache-httpd/default.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/default.nix
@@ -406,7 +406,7 @@ let
         ([ mainCfg.phpOptions ] ++ (map (svc: svc.phpOptions) allSubservices));
     }
     ''
-      cat ${php}/etc/php-recommended.ini > $out
+      cat ${php}/etc/php.ini > $out
       echo "$options" >> $out
     '';