代码改变世界

Web.py Cookbook 简体中文版 - deploying web.py with nginx and mod_wsgi

2012-11-23 11:11  justjavac  阅读(128)  评论(0编辑  收藏  举报

t is possible to deploy web.py with nginx using a mod_wsgi similar to the module for Apache.

After compiling and installing nginx with mod_wsgi, you can easily get a web.py app up and running with the following config* (edit the paths and settings with your own):

wsgi_python_executable  /usr/bin/python;

server {
    listen 80;
    server_name www.domain_name.com domain_name.com;
    root /path/to/your/webpy;

    include /etc/nginx/wsgi_vars;
    location / {
        wsgi_pass /path/to/your/webpy/app.py;     
     }
}

Note: This is a snippet of the relevant information to setup mod_wsgi for your web app and NOT a full config for running nginx.

Helpful links:
nginx website
wiki page on mod_wsgi

无觅相关文章插件,快速提升流量