Nginx 下用fastcgi 模式使用 webpy

nginx
--------------------------------------------------------
server {
        listen 80;
        server_name new.vtao.net;
        access_log /var/log/nginx/new.vtao.net.log;
        location / {
                include fastcgi_params;
                fastcgi_pass unix:/tmp/py-fcgi.sock;
        }
        location /static/ {
                root /var/webpy;
                if (-f $request_filename){
                        rewrite ^/static/(.*)$ /static/$1 break;
                }
        }
}


code.py
--------------------------------------------------------
#!/usr/bin/env Python
import web
import datetime

urls=(
        '/', 'index',
)

app=web.application(urls, globals())

class index:
        def GET(self):
                return "Hello, world! now is:"+str(datetime.datetime.utcnow())

if __name__=="__main__":
        web.wsgi.runwsgi=lambda func,addr=None: web.wsgi.runfcgi(func,addr)
        app.run()


start shell script
-------------------
#!/bin/sh
spawn-fcgi -d /var/webpy -u www-data -g www-data -s /tmp/py-fcgi.sock -f /var/webpy/code.py

stop shell script
-------------------
#!/bin/sh
kill `pgrep -f "python /var/webpy/code.py"`

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pxdfj.html