标签:style blog http color io os ar 文件 sp
在搭建之前,有必要了解下什么是fastcgi,但鉴于我自己也不大了解,这里就不搬门弄斧了,请参考各种百科和官网资料.
python下载地址:戳这里
webpy下载地址:戳这里
flup下载地址:戳这里
nginx下载地址:戳这里
建议先把python装好,然后装setuptools,easy_install,接着用easy_install命令可以直接下载安装web.py,flup.
nginx下载解压即可用,不过需要稍微配置一下.
安装完成测试下,打开nginx.exe再访问localhost显示文件夹html下的index.html内容就没什么问题了.
conf下的nginx.conf是它的配置文件,这东西参数好多,配置参数详解候可以参考这篇文章,而且配置之前记得留备份啊
我们现在需要改的东西如下.
server {
listen 80;
server_name localhost;
location / {
root E:/pyweb/www/; #这个指向web的根目录
index index.html index.htm;
include fastcgi_params; #默认的fastcgi参数 设置
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_pass 127.0.0.1:8008; #注意这个端口号
}
}
设置完后用命令行的方式
nginx –s stop 停止服务
nginx –t 测试配置文件是否有错误
nginx 启动服务
然后访问localhost,会显示pyweb/www/下的index.html(自己随便写个hello world吧)
新建一个code.py文件,其内容如下
import web urls = ( ‘/hello‘, ‘index‘ ) class index: def GET(self): return "Hello, world!" if __name__ == "__main__": app = web.application(urls, globals()) app.run()
然后命令行启动它,像这样python code.py 8008 fastcgi,这里的8008即第二步配置文件中设置端口号,如果不一致是无法正常访问的.
现在访问localhost/hello,看是不是返回了Hello, world?
WIN下搭建服务器真的是各种蛋疼,很多东西不支持,没什么必要还是建议在Linux下弄,而且在Linux下性能还比Win高出不少,费力不讨好的事少做为好.
Windows下nginx+web.py+fastcgi服务搭建
标签:style blog http color io os ar 文件 sp
原文地址:http://www.cnblogs.com/destino74/p/4003518.html