Add fcgi script for supervisor

This commit is contained in:
Ian Adam Naval 2015-09-15 22:02:25 -04:00
parent cb985a2dbc
commit 9653f29c2f

6
dakamenu.fcgi Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/python
from flup.server.fcgi import WSGIServer
from server import app
if __name__ == '__main__':
WSGIServer(app, bindAddress='/tmp/dakamenu-fcgi.sock').run()