BUGFIX proper ssl initialization flags
diff --git a/src/notification_server.c b/src/notification_server.c
index 9099207..759572b 100644
--- a/src/notification_server.c
+++ b/src/notification_server.c
@@ -854,7 +854,7 @@
 
     info.gid = -1;
     info.uid = -1;
-    info.options = LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT | LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS;
+    info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT | LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS;
 
     /* create server */
     context = lws_create_context(&info);