Windows系统下使用flup搭建Nginx和Python环境的方法


Posted in Python onDecember 25, 2015

首先确保你的电脑里已经安装了Python和Django,接下来我们还需要两个组件,nginx服务器和flup(Python的FastCGI组件)
nginx下载地址:http://nginx.org/en/download.html
flup下载地址:http://www.saddi.com/software/flup/dist/flup-1.0.2.tar.gz
与Linux下不同的是,nginx在windows下是以一个应用程序的方式运行,而不是以一个服务运行(难怪没人在windows服务器上用nginx)
把刚刚下载好的两个压缩包都解压到C:\nginx\, C:\flup\(目录可自己选择,这里只做个演示)然后用python setup.py install 命令

安装flup,接着就要配置nginx了,打开C:\nginx\conf\nginx.conf,我的配置文件如下,大家可根据需要自行修改:

#user nobody; 
worker_processes 1; 
 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
 
#pid    logs/nginx.pid; 
 
 
events { 
  worker_connections 1024; 
} 
 
 
http { 
  include    mime.types; 
  default_type application/octet-stream; 
 
  #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
  #         '$status $body_bytes_sent "$http_referer" ' 
  #         '"$http_user_agent" "$http_x_forwarded_for"'; 
 
  #access_log logs/access.log main; 
 
  sendfile    on; 
  #tcp_nopush   on; 
 
  #keepalive_timeout 0; 
  keepalive_timeout 65; 
 
  #gzip on; 
 
  server { 
    listen    80; 
    server_name localhost; 
 
    #charset koi8-r; 
 
    #access_log logs/host.access.log main; 
 
    location / { 
      root  html; 
      index index.html index.htm; 
    } 
 
    #error_page 404       /404.html; 
 
    # redirect server error pages to the static page /50x.html 
    # 
    error_page  500 502 503 504 /50x.html; 
    location = /50x.html { 
      root  html; 
    } 
 
    # proxy the PHP scripts to Apache listening on 127.0.0.1:80 
    # 
    #location ~ \.php$ { 
    #  proxy_pass  http://127.0.0.1; 
    #} 
 
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 
    # 
    #location ~ \.php$ { 
    #  root      html; 
    #  fastcgi_pass  127.0.0.1:9000; 
    #  fastcgi_index index.php; 
    #  fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 
    #  include    fastcgi_params; 
    #} 
 
    # deny access to .htaccess files, if Apache's document root 
    # concurs with nginx's one 
    # 
    #location ~ /\.ht { 
    #  deny all; 
    #} 
     
    # 静态资源 
    location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|js)$ 
    { 
      root e:/gin/gin/; 
      expires 30d; 
      break; 
    } 
 
    location ~ ^/static/ { 
      root e:/gin/gin/; 
      expires 30d; 
      break; 
    }  
 
    location ~ ^/ { 
      # 指定 fastcgi 的主机和端口 
      fastcgi_pass 127.0.0.1:8051; 
      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_param SERVER_PROTOCOL $server_protocol; 
      fastcgi_param SERVER_PORT $server_port; 
      fastcgi_param SERVER_NAME $server_name; 
      fastcgi_pass_header Authorization; 
      fastcgi_intercept_errors off; 
    } 
  } 
 
  # another virtual host using mix of IP-, name-, and port-based configuration 
  # 
  #server { 
  #  listen    8000; 
  #  listen    somename:8080; 
  #  server_name somename alias another.alias; 
 
  #  location / { 
  #    root  html; 
  #    index index.html index.htm; 
  #  } 
  #} 
 
 
  # HTTPS server 
  # 
  #server { 
  #  listen    443; 
  #  server_name localhost; 
 
  #  ssl         on; 
  #  ssl_certificate   cert.pem; 
  #  ssl_certificate_key cert.key; 
 
  #  ssl_session_timeout 5m; 
 
  #  ssl_protocols SSLv2 SSLv3 TLSv1; 
  #  ssl_ciphers HIGH:!aNULL:!MD5; 
  #  ssl_prefer_server_ciphers  on; 
 
  #  location / { 
  #    root  html; 
  #    index index.html index.htm; 
  #  } 
  #} 
 
}

需要注意的是,对于不需要url rewrite的目录,比如存放css和图片的目录,需要在配置文件里指明,否则将无法访问这些文件

location ~ ^/static/ {
      root e:/gin/gin/;
      expires 30d;
      break;
    }

最后一步就是运行nginx服务器,并且用FastCGI运行你的Django项目了
进入nginx的目录:

cd c:\nginx\
  start nginx

然后在浏览器里访问http://loaclhost/ 就应该可以看到nginx的欢迎界面了。最后进入你的Django项目的根目录,然后用一下命令来运行服务器:

python manage.py runfcgi method=threaded host=127.0.0.1 port=8051

刷新localhost页面,你就能看到你的项目主页啦~~
补充一点windwos下nginx操作的命令(来自官方文档)

nginx -s stop quick exit
nginx -s quit graceful quit
nginx -s reload changing configuration, starting a new worker, quitting an old worker gracefully
nginx -s reopen reopening log files

大功告成,开始django之旅,ohye!!!

Python 相关文章推荐
Python中的is和id用法分析
Jan 26 Python
Python实现字符串格式化的方法小结
Feb 20 Python
Python实现字符串匹配算法代码示例
Dec 05 Python
django admin 后台实现三级联动的示例代码
Jun 22 Python
Python中的函数式编程:不可变的数据结构
Oct 08 Python
pandas基于时间序列的固定时间间隔求均值的方法
Jul 04 Python
python使用writerows写csv文件产生多余空行的处理方法
Aug 01 Python
Python使用Tkinter实现滚动抽奖器效果
Jan 06 Python
通过实例解析python描述符原理作用
Jan 22 Python
django从后台返回html代码的实例
Mar 11 Python
Python自动化操作实现图例绘制
Jul 09 Python
Python 绘制可视化折线图
Jul 22 Python
在Linux系统上通过uWSGI配置Nginx+Python环境的教程
Dec 25 #Python
Linux系统上Nginx+Python的web.py与Django框架环境
Dec 25 #Python
Linux下将Python的Django项目部署到Apache服务器
Dec 24 #Python
在Linux系统上部署Apache+Python+Django+MySQL环境
Dec 24 #Python
在Mac OS上使用mod_wsgi连接Python与Apache服务器
Dec 24 #Python
在Mac OS上搭建Python的开发环境
Dec 24 #Python
详解Python字符串对象的实现
Dec 24 #Python
You might like
fckeditor上传文件按日期存放及重命名方法
2015/05/22 PHP
Zend Framework实现具有基本功能的留言本(附demo源码下载)
2016/03/22 PHP
PHP关键特性之命名空间实例详解
2017/05/06 PHP
JQuery 学习笔记 选择器之二
2009/07/23 Javascript
起点页面传值js,有空研究学习下
2010/01/25 Javascript
js中prototype用法详细介绍
2013/11/14 Javascript
Tab切换组件(选项卡功能)实例代码
2013/11/21 Javascript
一个判断抢购时间是否到达的简单的js函数
2014/06/23 Javascript
Jquery 实现table样式的设定
2015/01/28 Javascript
js判断主流浏览器类型和版本号的简单实现代码
2016/05/26 Javascript
js实现百度登录框鼠标拖拽效果
2017/03/07 Javascript
详解vue-cli快速构建项目以及引入bootstrap、jq
2017/05/26 Javascript
bootstrap fileinput实现文件上传功能
2017/08/23 Javascript
vue.js单文件组件中非父子组件的传值实例
2018/09/13 Javascript
JS实现的点击按钮图片上下滚动效果示例
2019/01/28 Javascript
如何基于JavaScript判断图片是否加载完成
2019/12/28 Javascript
JS实现简易图片自动轮播
2020/10/16 Javascript
深入理解javascript中的this
2021/02/08 Javascript
实例说明Python中比较运算符的使用
2015/05/13 Python
Python使用pygame模块编写俄罗斯方块游戏的代码实例
2015/12/08 Python
Python 的描述符 descriptor详解
2016/02/27 Python
TensorFlow在MAC环境下的安装及环境搭建
2017/11/14 Python
pandas 将list切分后存入DataFrame中的实例
2018/07/03 Python
Python中pandas dataframe删除一行或一列:drop函数详解
2018/07/03 Python
Python3列表List入门知识附实例
2020/02/09 Python
如何通过python实现IOU计算代码实例
2020/11/02 Python
CSS中垂直居中的简单实现方法
2015/07/06 HTML / CSS
CSS3 实现图形下落动画效果
2020/11/13 HTML / CSS
html5的画布canvas——画出弧线、旋转的图形实例代码+效果图
2013/06/09 HTML / CSS
北美三大旅游网站之一:Travelocity加拿大
2016/08/20 全球购物
英国电动工具购买网站:Anglia Tool Centre
2017/04/25 全球购物
现在输入n个数字,以逗号,分开;然后可选择升或者降序排序;按提交键就在另一页面显示按什么排序,结果为,提供reset
2012/11/09 面试题
艺术应用与设计专业个人的自我评价
2013/11/19 职场文书
go语言中GOPATH GOROOT的作用和设置方式
2021/05/05 Golang
pandas数值排序的实现实例
2021/07/25 Python
MySql分区类型及创建分区的方法
2022/04/13 MySQL