From cba53547dba982261676d470c95a33d8311763fd Mon Sep 17 00:00:00 2001 From: stitchy Date: Thu, 9 Jan 2025 19:05:00 -0800 Subject: [PATCH 1/3] feat(tanzanite): add files location to website --- hosts/tanzanite/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index 184c328..0c1bc3f 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -43,6 +43,9 @@ in { location = /404.html { internal; } + location ^~/files/ { + alias /opt/www/files/; + } ''; }; "gay.stitchy.moe" = { From d3869fd58ed10f4c0b62475ef2cfc4255ce81b4b Mon Sep 17 00:00:00 2001 From: stitchy Date: Thu, 9 Jan 2025 19:05:13 -0800 Subject: [PATCH 2/3] feat(tanzanite): add shaders location to website --- hosts/tanzanite/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index 0c1bc3f..fdd211c 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -43,6 +43,9 @@ in { location = /404.html { internal; } + location ^~/shaders/ { + alias /opt/www/shader-web-test/; + } location ^~/files/ { alias /opt/www/files/; } From 84e0e0688b7d95e3f818417620b56988994a3024 Mon Sep 17 00:00:00 2001 From: stitchy Date: Tue, 4 Feb 2025 11:24:14 -0800 Subject: [PATCH 3/3] fix(tanzanite): proper upload size --- hosts/tanzanite/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/tanzanite/default.nix b/hosts/tanzanite/default.nix index fdd211c..745dadf 100644 --- a/hosts/tanzanite/default.nix +++ b/hosts/tanzanite/default.nix @@ -32,6 +32,7 @@ in { enable = true; recommendedProxySettings = true; recommendedTlsSettings = true; + clientMaxBodySize = "100m"; virtualHosts = { "stitchy.moe" = { enableACME = true;