...
Stand-alone storage node
Here will the stand-alone setup be documented.First you will have to create a key with the right entitlements to be able to access the torrents you are interested in.
Find the script lobberstoragenode in the directory scripts in lobber-storagenode.
You need to change the following options:
Code Block |
---|
|
L_KEY="[KEY]"
L_HOST="tracker.someserver.net"
L_TRACKERPROXYURL="https://tracker.someserver.net:443/tracker/uannounce"
L_TRACKERPROXYLISTEN="localhost:8080"
L_URLS="https://tracker.someserver.net/torrent/all.json"
|
Copy the script to the start up script folder and change permissions on it.
Code Block |
---|
cp lobberstoragenode /etc/init.d/lobberstoragenode
chmod 755 /etc/init.d/lobberstoragenode
|
Start the storage node:
Code Block |
---|
/etc/init.d/lobberstoragenode standalone start
|
Storage node for Lobber web application
...