Remove explicit socket from fcgi script.

This commit is contained in:
Ian Adam Naval 2014-07-21 02:44:16 -04:00
parent 998228db84
commit 79dce3b2f0

View File

@ -3,4 +3,4 @@ from flup.server.fcgi import WSGIServer
from server import app
if __name__ == '__main__':
WSGIServer(app, bindAddress='/tmp/ianonavy-fcgi.sock', umask=0002).run()
WSGIServer(app).run()