init nixwebr.ing

This commit is contained in:
jacekpoz 2024-09-12 17:53:33 +02:00
parent b8f5277f01
commit 090241ee19
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
3 changed files with 20 additions and 0 deletions

View file

@ -1,5 +1,6 @@
_: {
imports = [
./nixwebr.ing
./services
./trollface.pl
./configuration.nix

View file

@ -0,0 +1,9 @@
_: {
services.caddy = {
enable = true;
virtualHosts."nixwebr.ing".extraConfig = ''
root * ${./.}
file_server
'';
};
}

View file

@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>nix webring</title>
</head>
<body>
<p>work in progress</p>
</body>
</html>