dotfiles.nix/nixos/viridian/services/lighttpd.nix

28 lines
598 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{config, ...}: {
2024-06-06 20:34:56 +08:00
services.lighttpd = {
enable = true;
port = 5624;
document-root = "/srv/services/websites/sajenim.dev";
};
services.traefik.dynamicConfigOptions.http.routers = {
lighttpd = {
rule = "Host(`sajenim.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"crowdsec"
2024-06-06 20:34:56 +08:00
"geoblock"
];
service = "lighttpd";
};
};
services.traefik.dynamicConfigOptions.http.services = {
lighttpd.loadBalancer.servers = [
2024-08-08 09:02:42 +08:00
{url = "http://127.0.0.1:${toString config.services.lighttpd.port}";}
2024-06-06 20:34:56 +08:00
];
};
}