You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
368 B
Python

#!/usr/bin/python
################################
# Configuration starts here
cert_path = '/home/sven/ssl/cert'
key_path = '/home/sven/ssl/private'
# Configuration ends here
################################
from shared.core import *
version = 1.0
daemon = SSLDaemon()
daemon.start('0.0.0.0', 9151, cert_path, key_path)
print "Server socket closed, exiting..."