2024-10-31 00:55:10 -05:00
|
|
|
{
|
|
|
|
imports = [
|
2024-11-12 02:01:34 -06:00
|
|
|
./0hats.com.nix
|
2025-01-14 18:06:19 -06:00
|
|
|
./bannergen.chandlerswift.com.nix
|
2024-11-04 19:20:49 -06:00
|
|
|
./files.chandlerswift.com.nix
|
2024-11-05 23:47:48 -06:00
|
|
|
./git.chandlerswift.com.nix
|
2024-11-12 00:47:23 -06:00
|
|
|
./harborpaperco.com.nix
|
2024-10-31 00:55:10 -05:00
|
|
|
./home.chandlerswift.com.nix
|
2024-11-18 18:14:14 -06:00
|
|
|
./isaacswift.com.nix
|
2024-11-06 00:00:51 -06:00
|
|
|
./katherineandchandler.com.nix
|
2024-11-20 08:16:57 -06:00
|
|
|
./lawrencedeerclub.chandlerswift.com.nix
|
2024-10-31 00:55:10 -05:00
|
|
|
./maps.chandlerswift.com.nix
|
2024-11-12 01:29:06 -06:00
|
|
|
./music.chandlerswift.com.nix
|
2024-11-12 20:57:03 -06:00
|
|
|
./preview.chandlerswift.com.nix
|
2024-10-31 00:55:10 -05:00
|
|
|
./stjohnscccc.org.nix
|
2024-11-05 23:32:46 -06:00
|
|
|
./swiftgang.net.nix
|
2025-01-14 23:12:25 -06:00
|
|
|
./whereis.chandlerswift.com.nix
|
2024-10-31 00:55:10 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
services.caddy = {
|
|
|
|
enable = true;
|
|
|
|
email = "chandler@chandlerswift.com";
|
2024-10-31 01:50:48 -05:00
|
|
|
globalConfig = ''
|
|
|
|
servers {
|
|
|
|
metrics # Enable Prometheus monitoring
|
|
|
|
}
|
|
|
|
'';
|
2024-11-25 23:15:07 -06:00
|
|
|
virtualHosts.":80" = {
|
|
|
|
serverAliases = [":443"];
|
|
|
|
extraConfig = ''
|
2024-11-30 22:32:26 -06:00
|
|
|
header Content-Type text/html
|
2024-11-25 23:15:07 -06:00
|
|
|
respond <<EOF
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>not found - chandlerswift.com</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
width: 35em;
|
|
|
|
margin: 0 auto;
|
|
|
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>not found - chandlerswift.com</h1>
|
|
|
|
<p>This page is hosted with <a href="https://chandlerswift.com/">chandlerswift.com</a>,
|
|
|
|
but the site couldn't be found.</p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF 404
|
|
|
|
'';
|
|
|
|
};
|
2024-10-31 00:55:10 -05:00
|
|
|
};
|
|
|
|
}
|