summary refs log tree commit diff
path: root/nixos/tests/php
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-02-08 12:13:30 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-02-08 12:13:30 +0100
commitae66e2d5ec98e70f705382afef21e79483f73fc3 (patch)
tree349316670c4f398aa5d606042b40856ace48adb3 /nixos/tests/php
parent3a98980e79fcdf1430059e3364c65318a6df52e8 (diff)
treewide: use configured nginx package
Diffstat (limited to 'nixos/tests/php')
-rw-r--r--nixos/tests/php/fpm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/php/fpm.nix b/nixos/tests/php/fpm.nix
index 31a79bb4dbe39..718a635a6c7c9 100644
--- a/nixos/tests/php/fpm.nix
+++ b/nixos/tests/php/fpm.nix
@@ -17,7 +17,7 @@ import ../make-test-python.nix ({ pkgs, lib, php, ... }: {
           locations."~ \\.php$".extraConfig = ''
             fastcgi_pass unix:${config.services.phpfpm.pools.foobar.socket};
             fastcgi_index index.php;
-            include ${pkgs.nginx}/conf/fastcgi_params;
+            include ${config.services.nginx.package}/conf/fastcgi_params;
             include ${pkgs.nginx}/conf/fastcgi.conf;
           '';
           locations."/" = {