像应用程序引擎一样设置 wsgi
我一直在应用程序引擎上使用 wsgi 并取得了巨大成功,现在我想在 fedora core 8 机器上使用类似的设置。我该如何去做呢?
我正在使用 yum 并且已经安装了 mod_wsgi 但我不知道如何实现它。我已经让 mod_python 工作了
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WSGI 是一个规范,而不是一个框架。考虑学习一些不太底层的东西,比如 Flask 或 Django。
httpd
mod_wsgi 配置指令 /deploy/" rel="nofollow">粘贴部署,独立的 WSGI 容器
WSGI 教程如果你坚持学习裸 WSGI
WSGI is a specification, not a framework. Consider learning something a little less low-level, such as Flask or Django.
mod_wsgi configuration directives for httpd
Paste Deployment, a standalone WSGI container
WSGI tutorials if you insist on learning bare WSGI
在 Apache 配置中找到所需站点的
部分并添加:现在,您已经在以 /foo 开头的 URL 路径和脚本 foo.py 之间进行了映射。对于
mod_wsgi
,您只需让该脚本在application
名称下保留一个可调用的 WSGI 应用程序,例如:就是这样。如果您已经有了 WSGI 应用程序对象,您应该能够将其直接放入。
Find the
<VirtualHost>
section for the site you want in your Apache config and add:Now you've made a mapping between URL paths starting with /foo and the script foo.py. For
mod_wsgi
, you just need to have that script leave a WSGI application callable under the nameapplication
, eg:and that's it. If you've already got a WSGI application object you should be able to drop it right in.