install
sudo apt-get install python-openssl
use threaded server in pyload
safe ssl connection?
Who (why ever) wants to use pyLoad’s XML–RPC via SSL have to install openssl first. Then you have to create a key:
cd pyLoad openssl genrsa 1024 > ssl.key openssl req -new -key ssl.key -out ssl.csr openssl req -days 36500 -x509 -key ssl.key -in ssl.csr > ssl.crt
Restart server. Now it should run with ssl and without errors;) If not, please go to #pyLoad on Freenode and we will help you.