deluge-web config ip and port
Posted: Thu Jun 20, 2013 8:39 pm
I want to connect deluge-web with a specify deluged (daemon) ip and port but I can't.
I add ""default_daemon": "10.10.1.3:50000"," in web.conf. Also I change the file permisios for avoid an overwrite.
I try changing "ui/web/json_api.py" with:
but not work...
I add ""default_daemon": "10.10.1.3:50000"," in web.conf. Also I change the file permisios for avoid an overwrite.
I try changing "ui/web/json_api.py" with:
Code: Select all
defaultTuple = default.partition(":")
host = defaultTuple[0]
port = int(defaultTuple[2])
self.connect(host, port, "", "")