try to fix log rotation issues

This commit is contained in:
Noah Masur
2024-07-02 13:42:50 +00:00
parent ff05b99fe1
commit 0bbbabd6e8
2 changed files with 14 additions and 3 deletions

View File

@ -91,8 +91,16 @@
);
};
# Allows Caddy to serve lower ports (443, 80)
systemd.services.caddy.serviceConfig.AmbientCapabilities = "CAP_NET_BIND_SERVICE";
systemd.services.caddy.serviceConfig = {
# Allows Caddy to serve lower ports (443, 80)
AmbientCapabilities = "CAP_NET_BIND_SERVICE";
# Prevent flooding of logs by rate-limiting
LogRateLimitIntervalSec = "5s"; # Limit period
LogRateLimitBurst = 100; # Limit threshold
};
# Required for web traffic to reach this machine
networking.firewall.allowedTCPPorts = [