bert: Add lawrencedeerclub.chandlerswift.com

This commit is contained in:
Chandler Swift 2024-11-20 08:16:57 -06:00
parent 3379ea34d7
commit e02c3832a9
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
4 changed files with 46 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./home.chandlerswift.com.nix
./isaacswift.com.nix
./katherineandchandler.com.nix
./lawrencedeerclub.chandlerswift.com.nix
./maps.chandlerswift.com.nix
./music.chandlerswift.com.nix
./preview.chandlerswift.com.nix

View file

@ -0,0 +1,18 @@
{
services.caddy.virtualHosts."lawrencedeerclub.chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/lawrencedeerclub.chandlerswift.com
# hide .git # ???
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
systemd.tmpfiles.settings."10-lawrencedeerclub-chandlerswift-com" = {
"/srv/www/lawrencedeerclub.chandlerswift.com" = {
d = {};
};
};
}

View file

@ -18,6 +18,22 @@
];
}];
}
{
job_name = "bigbird_zfs";
static_configs = [{
targets = [
"bigbird:9134"
];
}];
}
{
job_name = "bigbird";
static_configs = [{
targets = [
"bigbird:9100"
];
}];
}
];
exporters.node = {
enable = true;

View file

@ -37,6 +37,17 @@
services.openssh.settings.PasswordAuthentication = false;
users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEhPyyqS3BGYor3zLbjc8hZuhem3mS8TNmvWogXcnz/b chandler@chandlerswift.com'' ];
services.prometheus.exporters = {
node = {
enable = true;
enabledCollectors = [
"systemd"
"zfs"
];
openFirewall = true;
};
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];