Skip to content
Snippets Groups Projects
Commit 6f372e72 authored by Martin van Es's avatar Martin van Es
Browse files

Add uwsgi support

parent acd53d70
No related branches found
No related tags found
No related merge requests found
[uwsgi]
http = :5002
wsgi-file = mdproxy.py
single-interpreter = true
enable-threads = true
master = true
......@@ -153,3 +153,5 @@ def serve_one(realm, eid):
if __name__ == "__main__":
app.run(host='127.0.0.1', port=5002, debug=False)
application = app
[uwsgi]
http = :5001
wsgi-file = mdsigner.py
single-interpreter = true
enable-threads = true
master = true
......@@ -74,3 +74,5 @@ for realm, values in config.items():
if __name__ == "__main__":
app.run(host='127.0.0.1', port=5001, debug=False)
application = app
......@@ -9,3 +9,4 @@ pyyaml
pyinotify
pyXMLSecurity
PyKCS11
uwsgi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment