Well, I made the Vagrant project, running Ubuntu 14.04, using 
Discover-Flask:
https://github.com/realpython/discover-flask

I also created another simple Flask app:

*simple.wsgi*
import os
import sys

project = os.path.dirname(__file__)
path = os.path.dirname(project)

if project not in sys.path:
    sys.path.insert(0,project)

from run import app as application



*run.py*
from flask import Flask

app = Flask(__name__)
app.debug = True

@app.route('/')
def hello_world():
    return 'Hello World!'

if __name__ = '__main__':
    app.run(host = '0.0.0.0')


Using the configuration you created, I can get both of these apps running. 
So, this means it's not Ubuntu, Apache, mod_wsgi, nor Flask. I'm guessing 
now that it's an issue with the Flask Restful API / flask.ext.restful 
library. I'll get on the Flask mailing list, see if I can figure this out.

What's stumped me so much is the lack of debugging output in the Apache 
error logs... Thanks for your help!

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to