Skip to content

Commit eafa4a1

Browse files
authored
Merge pull request #191 from booxter/jellarr-apply-bitrate-limit-to-all
jellarr: apply external bitrate limit to all users
2 parents 176cf26 + 0c311c1 commit eafa4a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nixos/beast/jellarr.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@
290290
enableAllFolders = allLibraries;
291291
enableCollectionManagement = allowWrite || isAdmin;
292292
loginAttemptsBeforeLockout = 3;
293+
# 20 Mbps (Jellyfin policy expects bits/sec).
294+
remoteClientBitrateLimit = 20 * 1000 * 1000;
293295
}
294296
// lib.optionalAttrs isGuest {
295297
maxActiveSessions = 2;
296-
# 20 Mbps (Jellyfin policy expects bits/sec).
297-
remoteClientBitrateLimit = 20 * 1000 * 1000;
298298
}
299299
// lib.optionalAttrs (!allLibraries) {
300300
enabledLibraries = [

0 commit comments

Comments
 (0)