Update docker
This commit is contained in:
parent
7674a912c4
commit
9e29d53040
2 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,11 @@
|
||||||
{ inputs, pkgs, system, ... }: {
|
{ inputs, pkgs, system, ... }: {
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
"fs.inotify.max_user_watches" = 10485760;
|
"fs.inotify.max_user_watches" = 52428800;
|
||||||
"fs.inotify.max_user_instances" = 1024;
|
"fs.inotify.max_user_instances" = 4096;
|
||||||
|
|
||||||
|
# Testing...
|
||||||
|
"net.core.netdev_max_backlog" = 4000;
|
||||||
|
"net.ipv4.tcp_max_syn_backlog" = 4096;
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
filter = "traefik-general-forceful-browsing";
|
filter = "traefik-general-forceful-browsing";
|
||||||
action = ''action-ban-docker-forceful-browsing'';
|
action = "action-ban-docker-forceful-browsing";
|
||||||
logpath = "/var/log/traefik/access.log";
|
logpath = "/var/log/traefik/access.log";
|
||||||
backend = "auto";
|
backend = "auto";
|
||||||
findtime = 600;
|
findtime = 600;
|
||||||
|
|
Loading…
Reference in a new issue