Update FileStream/config.py
Browse files- FileStream/config.py +1 -1
FileStream/config.py
CHANGED
@@ -23,7 +23,7 @@ class Telegram:
|
|
23 |
AUTH_USERS = list(set(int(x) for x in str(env.get("AUTH_USERS", "")).split()))
|
24 |
|
25 |
class Server:
|
26 |
-
PORT = int(
|
27 |
BIND_ADDRESS = str(env.get("BIND_ADDRESS", "0.0.0.0"))
|
28 |
PING_INTERVAL = int(env.get("PING_INTERVAL", "1200")) # 20 minutes
|
29 |
HAS_SSL = str(env.get("HAS_SSL", "0").lower()) in ("1", "true", "t", "yes", "y")
|
|
|
23 |
AUTH_USERS = list(set(int(x) for x in str(env.get("AUTH_USERS", "")).split()))
|
24 |
|
25 |
class Server:
|
26 |
+
PORT = int(7860)
|
27 |
BIND_ADDRESS = str(env.get("BIND_ADDRESS", "0.0.0.0"))
|
28 |
PING_INTERVAL = int(env.get("PING_INTERVAL", "1200")) # 20 minutes
|
29 |
HAS_SSL = str(env.get("HAS_SSL", "0").lower()) in ("1", "true", "t", "yes", "y")
|