feat: refactor the modules/servers directory.

This commit is contained in:
CronyAkatsuki 2026-01-19 21:36:24 +01:00
parent 4e783c052b
commit 8b754d3a7e
69 changed files with 61 additions and 62 deletions

View file

@ -0,0 +1,31 @@
{config, ...}: {
services.plausible = {
enable = true;
server = {
baseUrl = "https://plausible.cronyakatsuki.xyz";
secretKeybaseFile = "${config.age.secrets.plausible.path}";
};
};
services.traefik.dynamicConfigOptions.http = {
services.plausible.loadBalancer.servers = [
{
url = "http://localhost:8000";
}
];
routers.plausible = {
rule = "Host(`plausible.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "plausible";
entrypoints = "websecure";
};
};
services.restic.backups = {
local.paths = ["/var/lib/plausible"];
server.paths = ["/var/lib/plausible"];
};
}