Changes
Etherpad
,*** Considering patching etherpad-lite to use ipv6 as well
*** Use a reverse-proxy
** SSL was not working, patched /home/etherpadlite/etherpad-lite/node/server.js line 81 with:
<syntaxhighlight lang="javascript">
var options = {
key: fs.readFileSync('/home/etherpadlite/etherpad-lite/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.private.key'),
cert: fs.readFileSync('/home/etherpadlite/etherpad-lite/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.crt'),
}
var app = express.createServer(options);
</syntaxhighlight>