I've got my Apache server setup and it is handling Flask responses via mod_wsgi. I've registered the WSGI script via the alias:
[httpd.conf]
WSGIScriptAlias /service "/mnt/www/wsgi-scripts/service.wsgi"
I've added the corresponding WSGI file at the above path:
[/mnt/www/wsgi-scripts/service.wsgi]
import sys
sys.path.insert(0, "/mnt/www/wsgi-scripts")
from service import application
And I have a simple test Flask Python script that provides the service module:
[/mnt/www/wsgi-scripts/service.py]
from flask import Flask
app = Flask(__name__)
@app.route('/')
def application(environ, start_response):
status = '200 OK'
output = "Hello World!"
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
@app.route('/upload')
def upload(environ, start_response):
output = "Uploading"
status = '200 OK'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
if __name__ == '__main__':
app.run()
When I go to my website URL [hostname]/service it works as expected and I get "Hello World!" back. The problem is that I don't know how to get other routes to work like, like 'upload' in the example above. This works fine in standalone Flask but under mod_wsgi I'm stumped. The only thing I can imagine is registering a separate WSGI script alias in the httpd.conf for each endpoint I want, but that takes away Flask's fancy routing support. Is there a way to make this work?
In your wsgi file you are doing
from service import application
, which is importing only yourapplication
method.Change that to
from service import app as application
and everything will work as expected.After your comment, I thought I'd expand the answer a bit:
Your wsgi file is python code - you can have any valid python code inside this file. The wsgi "handler" that is installed in Apache is looking for the application name in this file, which it will hand off requests to. A Flask class instance -
app = Flask(__name__)
- provides such an interface, but since its calledapp
and notapplication
, you have to alias it when you import it - that's what the from line does.You could - and this is perfectly fine - simply do this
application = Flask(__name__)
and then point the wsgi handler in Apache to yourservice.py
file. Ifservice.py
was importable (that means, somewhere inPYTHONPATH
), you wouldn't need an intermediary wsgi script.Although the above works, its bad practice. The wsgi file needs permissions from the Apache process to work; and you generally separate that from the actual source code which should be somewhere else on your filesystem, with appropriate permissions.