summary refs log tree commit diff
path: root/nixos/tests/php
diff options
context:
space:
mode:
authortaku0 <taku0@users.noreply.github.com>2021-03-03 19:35:16 +0900
committerGitHub <noreply@github.com>2021-03-03 19:35:16 +0900
commit61706fc470d0838064f3453630468cefd685b090 (patch)
tree034fc3d86eb6bc2c5e1ed5908057360645747636 /nixos/tests/php
parentc16de94bd9abead5459fafde0a249f434f8b6b04 (diff)
parent17cc2e7543946262fc33929dc85feac3b66b46d0 (diff)
Merge pull request #114853 from lourkeur/fix-string-escaping
nixos/kresd, nixos/dokuwiki, tests/fpm, build-bazel-package, libcutl: fix string escaping
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 f84394ccea45f..02ea517947498 100644
--- a/nixos/tests/php/fpm.nix
+++ b/nixos/tests/php/fpm.nix
@@ -10,7 +10,7 @@ import ../make-test-python.nix ({pkgs, lib, php, ...}: {
         testdir = pkgs.writeTextDir "web/index.php" "<?php phpinfo();";
       in {
         root = "${testdir}/web";
-        locations."~ \.php$".extraConfig = ''
+        locations."~ \\.php$".extraConfig = ''
           fastcgi_pass unix:${config.services.phpfpm.pools.foobar.socket};
           fastcgi_index index.php;
           include ${pkgs.nginx}/conf/fastcgi_params;