aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/services/web-apps/tt-rss.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-09-17 00:23:51 +0000
committerGitHub <noreply@github.com>2019-09-17 00:23:51 +0000
commit432a2d73be9a4cc70a030abc8a8d8e445fc814f9 (patch)
tree6885816b069048e0c833480ba0e89f9f1a27371a /nixos/modules/services/web-apps/tt-rss.nix
parent4641b683f6d8c8e769ae849316de1522ae18179f (diff)
nixos/tt-rss: fix string escape
Diffstat (limited to '')
-rw-r--r--nixos/modules/services/web-apps/tt-rss.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/tt-rss.nix b/nixos/modules/services/web-apps/tt-rss.nix
index abe4748591e..b92e3449894 100644
--- a/nixos/modules/services/web-apps/tt-rss.nix
+++ b/nixos/modules/services/web-apps/tt-rss.nix
@@ -548,7 +548,7 @@ let
index = "index.php";
};
- locations."~ \.php$" = {
+ locations."~ \\.php$" = {
extraConfig = ''
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:${config.services.phpfpm.pools.${cfg.pool}.socket};