Browse Source

Use ssl startup options. fix #3490

Thanks @sjmcinness
pull/3341/head
Ruud 11 years ago
parent
commit
a37517bf6a
  1. 2
      couchpotato/runner.py

2
couchpotato/runner.py

@ -293,7 +293,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En
'keyfile': config['ssl_key'],
}
server = HTTPServer(application, no_keep_alive = True)
server = HTTPServer(application, no_keep_alive = True, ssl_options = ssl_options)
try_restart = True
restart_tries = 5

Loading…
Cancel
Save