Compare commits

..

2 commits

2 changed files with 15 additions and 20 deletions

View file

@ -153,12 +153,7 @@
services.logrotate = { services.logrotate = {
enable = true; enable = true;
settings = settings = lib.mapAttrs' (virtualHost: _:
{
# Override the default, just keep fewer logs
nginx.rotate = 6;
}
// lib.mapAttrs' (virtualHost: _:
lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" {
frequency = "daily"; frequency = "daily";
rotate = 2; rotate = 2;

View file

@ -8,11 +8,11 @@
in { in {
imports = [flake-inputs.foundryvtt.nixosModules.foundryvtt]; imports = [flake-inputs.foundryvtt.nixosModules.foundryvtt];
services.foundryvtt = { # services.foundryvtt = {
enable = true; # enable = true;
hostName = domain; # hostName = domain;
minifyStaticFiles = true; # minifyStaticFiles = true;
}; # };
# Want to start it manually when I need it, not have it constantly # Want to start it manually when I need it, not have it constantly
# running # running