博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx + webpy 和FastCGI搭建webpy环境
阅读量:6003 次
发布时间:2019-06-20

本文共 2304 字,大约阅读时间需要 7 分钟。

web.py 是一个轻量级Python web框架,它简单而且功能大。web.py是一个开源项目。

1、所需要的软件:

Nginx nginx-1.4.7.tar.gz (需要包含fastcgi和rewrite模块)。

Webpy 0.32

Spawn-fcgi 1.6.2

Flup

注意:Flup是最常见的忘记装的软件,需要安装

更老的版本应该也可以工作,但是没有测试过,最新的是可以工作的

2、安装软件

安装nginx:

1
2
3
4
5
6
wget http://nginx.org/download/nginx-1.4.7.tar.gz
tar zxvf nginx-1.4.7.tar.gz
cd nginx-1.4.7
yum -y install pcre pcre-devel
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_stub_status_module
make && make install

安装web.py、Spawn-fcgi 、Flup

1
2
3
4
5
6
7
8
9
10
11
安装spawn-fcgi
wget http://www.lighttpd.net/download/spawn-fcgi-1.6.3.tar.gz
tar zxvf spawn-fcgi-1.6.3.tar.gz
./configure
make && make install
                                 
安装flup
pip install flup
                                 
安装web.py
pip install web.py

nginx配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
server {
     
listen       80;
     
server_name  localhost;
     
root /usr/local/nginx/html/webpy;
     
location / {
         
include fastcgi_params;
         
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
         
fastcgi_param PATH_INFO $fastcgi_script_name;   
         
fastcgi_pass 127.0.0.1:9002;
         
}
     
error_page   500 502 503 504  /50x.html;
     
location = /50x.html {
         
root   html;
     
}
      
location /static/ {
         
if (-f $request_filename) {
         
rewrite ^/static/(.*)$  /static/$1 break;
         
}
      
}
                         
}

检查配置文件并启动nginx

1
2
3
4
[root@test controllers]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@test controllers]# /usr/local/nginx/sbin/nginx

在web跟目录创建一个python文件

将下面的代码保存为index.py(或者任何你喜欢的),注意,使用Nginx配置的话,web.wsgi.runwsgi = lambda func, addr=None: web.wsgi.runfcgi(func, addr)这一行代码是必须的。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- coding: utf-8 -*-
                
import web
                
urls = ("/.*", "hello")
app = web.application(urls, globals())
                
class hello:
    
def GET(self):
        
return 'Hello, world! 3305'
                
if __name__ == "__main__":
    
web.wsgi.runwsgi = lambda func, addr=None: web.wsgi.runfcgi(func, addr)
    
app.run()

注意: 同样需要给代码设置权限,代码如下chmod +x index.py。

启动和关闭Spawn-fcgi

1
2
3
4
5
启动spawn-fcgi
spawn-fcgi -d /path/to/www -f /path/to/www/index.py -a 127.0.0.1 -p 9002
            
关闭Spawn-fcgi
kill `pgrep -f "python /path/to/www/index.py"`

在浏览器上输入 IP访问出现如下图所示:

本文转自1594cqb 51CTO博客,原文链接:http://blog.51cto.com/wolfchen/1403377,如需转载请自行联系原作者

你可能感兴趣的文章
演示:思科IPS传感器的命令行初始配置(支持图型化管理)
查看>>
Android Message机制及其应用
查看>>
用SHELL脚本来防SSH暴力破解
查看>>
从等保的角度浅谈数据库系统安全保护机制
查看>>
RADWARE之链路负载均衡配置解析
查看>>
exchange 2013脱机通讯簿地址列表的修改
查看>>
关于Cocos Creator脚本执行顺序的几点补充
查看>>
微软泄漏Windows Phone 8新特性
查看>>
使用Spring Data Redis操作Redis(二)
查看>>
我的友情链接
查看>>
RSA2012系列(5):虚拟化安全总揽
查看>>
读书笔记-项目计划、进度与控制
查看>>
Google adsense帐户被封到解封全过程
查看>>
Exchange 2013多租户托管PART 6:OWA登录配置
查看>>
ubuntu自动登陆设置
查看>>
[转]对于C语言中指针和数组的认识和看法
查看>>
条件数据库Android:sqllite使用
查看>>
回溯法---->哈密顿环
查看>>
Javascript 连连看
查看>>
智能手机中显示信号强度格数
查看>>