我正在按照http://www.enigmeta.com/2012/08/16/starting-flask/上的教程使用 mod_wsgi 开发一个简单的烧瓶应用程序并将其部署到 Apache。我想我已经把它缩小到我的 Apache 配置中的一个缺陷。如果我从命令行运行 helloflask.py,它工作正常。我可以通过 wget 从 localhost:5000 的另一个 shell 访问它,我得到正确的响应。我还启动并运行了其他虚拟主机(非 wsgi),所以我知道 Apache 正在运行并响应端口 80 上的其他请求。
我有以下结构:
/sites/helloflask.mydomain.com
/helloflask
application.wsgi
helloflask.py
(rest of env from virtualenv)
/log
access.log
error.log
helloflask.py:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
应用程序.wsgi:
import os, sys, logging
logging.basicConfig(stream=sys.stderr)
PROJECT_DIR = '/sites/helloflask.mydomain.com/helloflask'
activate_this = os.path.join(PROJECT_DIR, 'bin', 'activate_this.py')
execfile(activate_this, dict(__file__=activate_this))
sys.path.append(PROJECT_DIR)
from helloflask import app as application
Apache 配置:/etc/apache2/sites-available/helloflask.mydomain.com
<VirtualHost *:80>
ServerName helloflask.mydomain.com
WSGIDaemonProcess helloflask user=myuser group=myuser threads=5
WSGIScriptAlias / /sites/helloflask.mydomain.com/helloflask/application.wsgi
<Directory /sites/helloflask.mydomain.com/helloflask>
WSGIProcessGroup helloflask
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
LogLevel warn
ErrorLog /sites/helloflask.mydomain.com/log/error.log
CustomLog /sites/helloflask.mydomain.com/log/access.log combined
</VirtualHost>
我启用了虚拟主机,重新启动了 apache,但没有得到浏览器的响应。“找不到服务器”,所以没有 500 响应,什么都没有。访问/错误日志中没有条目(特定于此虚拟主机)。每次重新启动时,我都会在总体 Apache 错误日志中得到以下信息:
[Sat Jun 29 20:07:58 2013] [notice] caught SIGTERM, shutting down
[Sat Jun 29 20:07:59 2013] [warn] mod_wsgi: Compiled for Python/2.7.2+.
[Sat Jun 29 20:07:59 2013] [warn] mod_wsgi: Runtime using Python/2.7.3.
[Sat Jun 29 20:07:59 2013] [notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.6 with Suhosin-Patch mod_wsgi/3.3 Python/2.7.3 configured -- resuming normal operations
我想知道指示不同版本的 Python 的那两条 [warn] 行是否是我的问题,但我不知道如何或修改什么来修复它。任何建议表示赞赏。
谢谢!