`
shake863
  • 浏览: 637432 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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"`

分享到:
评论
2 楼 shake863 2011-08-09  
bee1314 写道
在学习web.py,小声问博主web.py的性能如何?


抱歉!我没有实战经验,只有学习经验。

1 楼 bee1314 2011-08-08  
在学习web.py,小声问博主web.py的性能如何?

相关推荐

Global site tag (gtag.js) - Google Analytics