From 4c22ae3f61ec779296a6147476fcba966c07c644 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sun, 15 Sep 2024 21:48:28 +0200 Subject: [PATCH] Add missing semicolon --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 8ca01aa..21fb878 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -160,7 +160,7 @@ in "/previews/" = { root = "/var/www/archtika-websites/previews"; index = "index.html"; - tryFiles = "$uri $uri/ $uri.html =404" + tryFiles = "$uri $uri/ $uri.html =404"; }; "/api/" = { proxyPass = "http://localhost:${toString cfg.apiPort}/";