wsgi definition for Apache mod_wsgi

pull/20/head
Steffen Sauler 2017-12-15 16:05:25 +01:00 committed by GitHub
parent 5050a6927f
commit 12b078a2e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

4
misp-dashboard.wsgi Normal file
View File

@ -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