treewide: Fix incorrect string escapes

This commit is contained in:
piegames
2024-12-23 21:58:07 +01:00
parent ccd60fa3b5
commit 603733851b
28 changed files with 44 additions and 44 deletions

View File

@@ -105,19 +105,19 @@ in
};
# Serve json files with content type header application/json
"~ \.json$" = {
"~ \\.json$" = {
extraConfig = ''
add_header Content-Type application/json;
'';
};
"~ \.tar.xz$" = {
"~ \\.tar.xz$" = {
extraConfig = ''
add_header Content-Type application/octet-stream;
'';
};
"~ \.tar.gz$" = {
"~ \\.tar.gz$" = {
extraConfig = ''
add_header Content-Type application/octet-stream;
'';