0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00

treewide: Fix incorrect string escapes

(cherry picked from commit 603733851b)
This commit is contained in:
piegames 2024-12-23 21:58:07 +01:00
parent ac7d6430f7
commit 772006e8c0
28 changed files with 44 additions and 44 deletions

View file

@ -348,10 +348,10 @@ in {
index = "index.php";
tryFiles = "$uri $uri/ /index.php?$query_string";
};
"~ \.php$".extraConfig = ''
"~ \\.php$".extraConfig = ''
fastcgi_pass unix:${config.services.phpfpm.pools."bookstack".socket};
'';
"~ \.(js|css|gif|png|ico|jpg|jpeg)$" = {
"~ \\.(js|css|gif|png|ico|jpg|jpeg)$" = {
extraConfig = "expires 365d;";
};
};