From 12b078a2e9265400c89ded9c277c70849319407d Mon Sep 17 00:00:00 2001 From: Steffen Sauler Date: Fri, 15 Dec 2017 16:05:25 +0100 Subject: [PATCH] wsgi definition for Apache mod_wsgi --- misp-dashboard.wsgi | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 misp-dashboard.wsgi diff --git a/misp-dashboard.wsgi b/misp-dashboard.wsgi new file mode 100644 index 0000000..47924c5 --- /dev/null +++ b/misp-dashboard.wsgi @@ -0,0 +1,4 @@ +import sys,os,os.path +sys.path.insert(0, os.path.dirname(__file__)) +os.environ["DASH_CONFIG"] = os.path.join(os.path.dirname(__file__), "config") +from server import app as application