0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/matrix-appservice-irc: allow disabling the ttl by setting it to 0 (#340841)

This commit is contained in:
Martin Weinelt 2024-09-09 20:58:45 +02:00 committed by GitHub
commit 58aa6d56f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View file

@ -147,10 +147,13 @@ in {
''; '';
}; };
ttlSeconds = lib.mkOption { ttlSeconds = lib.mkOption {
type = ints.positive; type = ints.unsigned;
default = 3600; default = 3600;
example = 0;
description = '' description = ''
Lifetime in seconds, that generated URLs stay valid. Lifetime in seconds, that generated URLs stay valid.
Set the lifetime to 0 to prevent URLs from becoming invalid.
''; '';
}; };
bindPort = lib.mkOption { bindPort = lib.mkOption {

View file

@ -84,7 +84,10 @@
aliasTemplate = "#irc_$CHANNEL"; aliasTemplate = "#irc_$CHANNEL";
}; };
}; };
mediaProxy.publicUrl = "http://localhost:11111/media"; mediaProxy = {
publicUrl = "http://localhost:11111/media";
ttl = 0;
};
}; };
}; };
}; };