summaryrefslogtreecommitdiffstats
path: root/pyload/remote/RemoteManager.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-12-15 14:00:42 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-12-15 14:00:42 +0100
commit8fbde7a43b4f838df0379fdb4acd791713b639b7 (patch)
treebb7e78afc6a34823e078ab64c6965321c6866e85 /pyload/remote/RemoteManager.py
parentadded new file states (diff)
downloadpyload-8fbde7a43b4f838df0379fdb4acd791713b639b7.tar.xz
more options to get webUI through proxy working
Diffstat (limited to 'pyload/remote/RemoteManager.py')
-rw-r--r--pyload/remote/RemoteManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/remote/RemoteManager.py b/pyload/remote/RemoteManager.py
index 7aeeb8a7a..b66b8b10a 100644
--- a/pyload/remote/RemoteManager.py
+++ b/pyload/remote/RemoteManager.py
@@ -67,8 +67,8 @@ class RemoteManager():
def startBackends(self):
- host = self.core.config["remote"]["listenaddr"]
- port = self.core.config["remote"]["port"]
+ host = self.core.config["webUI"]["wsHost"]
+ port = self.core.config["webUI"]["wsPort"]
for b in self.available:
klass = getattr(__import__("pyload.remote.%s" % b, globals(), locals(), [b], -1), b)