mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-29 18:08:29 +02:00
configured crowdsec
This commit is contained in:
parent
5fa24530b1
commit
60e1f3c3d0
9 changed files with 196 additions and 17 deletions
52
hosts/falkenstein-1/modules/crowdsec/default.nix
Normal file
52
hosts/falkenstein-1/modules/crowdsec/default.nix
Normal file
|
@ -0,0 +1,52 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
crowdsec
|
||||
crowdsec-firewall-bouncer
|
||||
ipset
|
||||
];
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "crowdsec";
|
||||
ensurePermissions = {
|
||||
"DATABASE crowdsec" = "ALL PRIVILEGES";
|
||||
};
|
||||
}
|
||||
];
|
||||
ensureDatabases = [ "crowdsec" ];
|
||||
|
||||
};
|
||||
systemd.services.crowdsec = {
|
||||
after = [ "syslog.target" "network.target" "remote-fs.target" "nss-lookup.target" ];
|
||||
description = "Crowdsec agent";
|
||||
serviceConfig = {
|
||||
Type = "notify";
|
||||
ExecStartPre = "${lib.getExe pkgs.crowdsec} -t -error";
|
||||
ExecStart = "${lib.getExe pkgs.crowdsec}";
|
||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||
Restart = "always";
|
||||
RestartSec = 60;
|
||||
};
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
systemd.services.crowdsec-firewall-bouncer = {
|
||||
path = [ pkgs.ipset pkgs.iptables ];
|
||||
after = [ "syslog.target" "network.target" "remote-fs.target" "nss-lookup.target" ];
|
||||
before = [ "netfilter-persistent.service" ];
|
||||
description = "Crowdsec firewall bouncer";
|
||||
serviceConfig = {
|
||||
# Type = "notify";
|
||||
ExecStartPre = "${lib.getExe pkgs.crowdsec-firewall-bouncer} -c /etc/crowdsec/crowdsec-firewall-bouncer.yaml -t";
|
||||
ExecStart = "${lib.getExe pkgs.crowdsec-firewall-bouncer} -c /etc/crowdsec/crowdsec-firewall-bouncer.yaml";
|
||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||
Restart = "always";
|
||||
RestartSec = 10;
|
||||
LimitNOFILE = 65536;
|
||||
};
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue