From 0cfc0983ab0601eb3d3be4a8d04d809be36b4bd0 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Tue, 1 Oct 2024 04:40:53 -0400 Subject: [PATCH] add utf8 charset --- hosts/stella-web.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/stella-web.nix b/hosts/stella-web.nix index ad6d52c..1dd6572 100644 --- a/hosts/stella-web.nix +++ b/hosts/stella-web.nix @@ -4,6 +4,9 @@ services.nginx.virtualHosts."stella.wolfgirl.systems" = { forceSSL = true; enableACME = true; + extraConfig = '' + charset utf-8; + ''; locations."~ \"^/~(.+?)(/.*)?$\"" = { alias = "/home/$1/public_html$2"; index = "index.html";