前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Nginx + Web.py 和FastCGI搭建Web.py环境

Nginx + Web.py 和FastCGI搭建Web.py环境

作者头像
星哥玩云
发布2022-06-30 21:24:05
8890
发布2022-06-30 21:24:05
举报
文章被收录于专栏:开源部署开源部署

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:

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

安装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配置文件

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

[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)这一行代码是必须的。

#!/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

启动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访问出现如下图所示:

Nginx + Web.py 和FastCGI搭建Web.py环境
Nginx + Web.py 和FastCGI搭建Web.py环境

使用Gunicorn部署web.py应用

Nginx + uWSGI + web.py 搭建示例  http://www.linuxidc.com/Linux/2011-12/48889.htm

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档