Please check the new ssl documentation in the docs: http://docs.kolab.org/howtos/secure-kolab-server.html
This howto is based on Centos 6.4. The configuration on Debian is similar, just the path
Please check the new ssl documentation in the docs: http://docs.kolab.org/howtos/secure-kolab-server.html
This howto is based on Centos 6.4. The configuration on Debian is similar, just the path
| <html> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script> | |
| <script src="/socket.io/socket.io.js"></script> | |
| <script> | |
| var socket = io.connect('http://<server>:3000'); | |
| socket.on('log', function (data) { | |
| $('#log').prepend($('<li></li>').text(data.line)); | |
| $('#log li:gt(50)').remove(); | |
| }); |