CHANGE testing http server files hardcoded to be local
diff --git a/src/notification_server.c b/src/notification_server.c
index 7035bbd..82a74a3 100644
--- a/src/notification_server.c
+++ b/src/notification_server.c
@@ -260,7 +260,7 @@
if (in && strcmp((const char *)in, whitelist[n].urlpath) == 0)
break;
- sprintf(buf, SERVER_CERT_DIR "%s", whitelist[n].urlpath);
+ sprintf(buf, "./%s", whitelist[n].urlpath);
if (lws_serve_http_file(wsi, buf, whitelist[n].mimetype, NULL, 0))
return -1; /* through completion or error, close the socket */