Compare commits
No commits in common. "d34dee84bdb03b0f955e87a93d304c1131929a38" and "29b14ef74e0a59a834cd6d95f12ea9712b784073" have entirely different histories.
d34dee84bd
...
29b14ef74e
11
flake.nix
11
flake.nix
@ -25,12 +25,11 @@
|
|||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./modules/matrix.nix
|
./matrix.nix
|
||||||
./modules/puffer.nix
|
./puffer.nix
|
||||||
./modules/gitea.nix
|
./gitea.nix
|
||||||
./modules/letsencrypt.nix
|
./letsencrypt.nix
|
||||||
./modules/fail2ban.nix
|
./email.nix
|
||||||
./modules/email.nix
|
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
nixos-mailserver.nixosModules.default
|
nixos-mailserver.nixosModules.default
|
||||||
nixos-matrix-modules.nixosModules.default
|
nixos-matrix-modules.nixosModules.default
|
||||||
|
@ -86,12 +86,12 @@ host replication all ::1/128 md5
|
|||||||
services.redis.servers."".enable = true;
|
services.redis.servers."".enable = true;
|
||||||
|
|
||||||
age.secrets.synapse_db_pass = {
|
age.secrets.synapse_db_pass = {
|
||||||
file = ../secrets/synapse_db_pass.age;
|
file = ./secrets/synapse_db_pass.age;
|
||||||
owner = "postgres";
|
owner = "postgres";
|
||||||
group = "postgres";
|
group = "postgres";
|
||||||
};
|
};
|
||||||
age.secrets.synapse_db_pass_prepared = {
|
age.secrets.synapse_db_pass_prepared = {
|
||||||
file = ../secrets/synapse_db_pass_prepared.age;
|
file = ./secrets/synapse_db_pass_prepared.age;
|
||||||
owner = "matrix-synapse";
|
owner = "matrix-synapse";
|
||||||
group = "matrix-synapse";
|
group = "matrix-synapse";
|
||||||
mode = "0600";
|
mode = "0600";
|
@ -1,19 +0,0 @@
|
|||||||
{ ... }: {
|
|
||||||
services.fail2ban = {
|
|
||||||
enable = true;
|
|
||||||
maxretry = 5;
|
|
||||||
ignoreIP = [
|
|
||||||
# Whitelist some subnets
|
|
||||||
"10.0.0.0/8" "172.16.0.0/12" "192.168.0.0/16"
|
|
||||||
"matrix.org"
|
|
||||||
"app.element.io" # don't ratelimit matrix users
|
|
||||||
];
|
|
||||||
bantime = "1h"; # Ban IPs for 1h at first.
|
|
||||||
bantime-increment = {
|
|
||||||
enable = true; # Enable increment of bantime after each violation
|
|
||||||
multipliers = "1 2 4 8 16 32 64 128 256";
|
|
||||||
maxtime = "168h"; # Do not ban for more than 1 week
|
|
||||||
overalljails = true; # Calculate the bantime based on all the violations
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user