Added simple website; removed transfer-sh; Cleaned up code from mail.

This commit is contained in:
Jurn Wubben 2025-06-12 17:11:25 +02:00
parent f1ff036503
commit 7ff74bc31c
5 changed files with 124 additions and 137 deletions

View file

@ -0,0 +1,14 @@
{
config,
lib,
...
}: {
services.caddy.virtualHosts."jsw.tf" = lib.mkIf config.niksos.server {
extraConfig = ''
header Content-Type text/html
respond <<HTML
${builtins.readFile ./index.html}
HTML 200
'';
};
}