nginx下使用webpy框架简单小例子
时间:2015-06-28 21:07 来源:linux.it.net.cn 作者:IT
[Python]代码
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"`
(责任编辑:IT)
[Python]代码 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"` (责任编辑:IT) |