From c5fc6db19e00894f77aff1a24cd396f83e7bb245 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Thu, 26 Jan 2023 14:35:08 -0500 Subject: [PATCH] Adding some more debug output. --- owrx/__main__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/owrx/__main__.py b/owrx/__main__.py index 2af61a5a..79c1fc21 100644 --- a/owrx/__main__.py +++ b/owrx/__main__.py @@ -122,9 +122,12 @@ Support and info: https://groups.io/g/openwebrx if os.path.isfile(keyFile) and os.path.isfile(certFile): server.socket = ssl.wrap_socket( server.socket, keyFile, certFile, server_side=True) - logger.info("Found SSL certificate, using https:// protocol...") + logger.info("Found SSL certificate, using https:// protocol.") else: - logger.info("No SSL certificate, using http:// protocol...") + logger.info("No SSL certificate, using http:// protocol.") + logger.info("To enable https://, supply SSL certificate:") + logger.info(" " + certFile) + logger.info(" " + keyFile) # Run the server server.serve_forever() except SignalException: