-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsettings.ini.default
37 lines (37 loc) · 1.74 KB
/
settings.ini.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[settings]
# show debug messages
DEBUG = false
# plex server url (e.g. http://ip:32400 or https://plex.reverse-proxy.com)
SERVER_URL = http://your-plex.com:32400
# plex token for server
SERVER_TOKEN = your_server_token
# name of server (does not matter, its used in the logs)
SERVER_NAME = Your_Server_Name
# how often to check the active streams in seconds
CHECK_INTERVAL = 90
# instantly kick 4K transcodes?
KICK_4K_TRANSCODE = true
# instantly kick video transcodes?
KICK_VIDEO_TRANSCODES = false
# instantly kick audio transcodes
KICK_AUDIO_TRANSCODES = false
# instantly kick any players from this , seperated list?
KICK_CLIENT_PLAYERS = Plex Web, Client2, Client3
# instantly kick streams from users with multiple ips
KICK_MULTIPLE_IP = true
# how many streams from unique ips before kicking extra user streams if above is true
KICK_MULTIPLE_IP_MAX = 1
# delay kick paused transcodes? (direct streams count too)
KICK_PAUSED_TRANSCODES = true
# delay kick paused direct plays?
KICK_PAUSED_DIRECTPLAY = false
# when the KICK_PAUSED* options above are true, the user has this many minutes to resume, otherwise kick
KICK_PAUSED_GRACE_MINS = 5
# messages to be displayed for different kick types
KICK_4K_TRANSCODE_MESSAGE = You are not allowed to transcode 4K content, fix your settings!
KICK_PAUSED_MESSAGE = You are not allowed to pause a stream for that long... cya!
KICK_TRANSCODE_MESSAGE = You are not allowed to transcode streams, use a better client!
KICK_PLAYER_MESSAGE = You are not allowed to use this trash player. Use the official software from www.plex.tv/downloads -> Get An App!!!
KICK_MULTI_IP_MESSAGE = You are not allowed to stream from more than 1 IP address!
# user list seperated by a , who are immune from all kicks
WHITELISTED_USERS = User1, User2, User3