Update FileStream/config.py
Browse files- FileStream/config.py +1 -1
FileStream/config.py
CHANGED
|
@@ -28,7 +28,7 @@ class Server:
|
|
| 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")
|
| 30 |
NO_PORT = str(env.get("NO_PORT", "1").lower()) in ("1", "true", "t", "yes", "y")
|
| 31 |
-
FQDN = str('')
|
| 32 |
URL = "http{}://{}{}/".format(
|
| 33 |
"s" if HAS_SSL else "", FQDN, "" if NO_PORT else ":" + str(PORT)
|
| 34 |
)
|
|
|
|
| 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")
|
| 30 |
NO_PORT = str(env.get("NO_PORT", "1").lower()) in ("1", "true", "t", "yes", "y")
|
| 31 |
+
FQDN = str('navpan2-telegbot.hf.space')
|
| 32 |
URL = "http{}://{}{}/".format(
|
| 33 |
"s" if HAS_SSL else "", FQDN, "" if NO_PORT else ":" + str(PORT)
|
| 34 |
)
|