Linux 搭建web.py应用

1. 安装web.py,目前的版本是web.py-0.33.tar.gz
2. 安装nginx
3. spawn-fcgi

下载spawn-fcgi-1.6.0.tar.gz

解压,执行./configure即可。

一、开发web.py应用
创建一个目录,如/work/webapp,代表web.py应用,在此目录下创建一个文件,如code.py,内容如下:

#!/usr/bin/env Python
"""docstring
"""
__revision__ = '0.1'
import web
urls = ('/','index')
app = web.application(urls, globals())
class index:
    def GET(self):
        return "webpy!!!!!!"
if __name__ == "__main__":
    app.run()

这里可以python code.py就可以运行访问,我们不打算这么做,通过前端的nginx反向代理访问更正式一些。

二、配置nginx
配置文件在/usr/local/nginx/conf/nginx.conf里,下面是配置:

#只是一个名称而已,随便取
     upstream {
         server 127.0.0.1:8000 weight=1;
         server 127.0.0.1:8001 weight=1;
     }

server {
         listen       80;
         server_name ;

#charset koi8-r;

#access_log logs/host.access.log main;
         #配置静态文件访问,在nginx安装目录的html下,可以指到其他目录
         location ~* ^.+\.(gif|png|jpg|jpeg|bmp|ico|css|swf|html|js|doc|txt)$ {
             root html;
             index index.html;
             expires     30d;
             access_log off;
         }

# 重点配置,访问被送到(在upstream里已经配置)
         location / {
             #root   html;
             #index index.html index.htm;

fastcgi_pass ;
             fastcgi_param SERVER_NAME $server_name;
             fastcgi_param SERVER_PORT $server_port;
             fastcgi_param SERVER_PROTOCOL $server_protocol;
             fastcgi_param PATH_INFO $fastcgi_script_name;
             fastcgi_param REQUEST_METHOD $request_method;
             fastcgi_param QUERY_STRING $query_string;
             fastcgi_param CONTENT_TYPE $content_type;
             fastcgi_param CONTENT_LENGTH $content_length;
             fastcgi_pass_header Authorization;
             fastcgi_intercept_errors off;
         }

#出错页面设置
         error_page   500 502 503 504 /50x.html;
         location = /50x.html {
             root   html;
         }


三、运行
启动nginx
#sudo /usr/local/nginx/sbin/nginx

按照upstream里的配置启动多个fcgi进程:
#sudo spawn-fcgi -C 5 -a 127.0.0.1 -p 8000 -f /workapp/code.py
#sudo spawn-fcgi -C 5 -a 127.0.0.1 -p 8001 -f /workapp/code.py

四、访问
服务器地址:80/
会打印出“webpy!!!!!!”
再看看nginx日志,/usr/local/nginx/logs/access.log,会发现轮询把请求递交给后端的web.py应用。

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

转载注明出处:https://www.heiqu.com/wygpxx.html