windows下nginx+FastCGI+Django完全攻略

最近几天在想弄一个Django项目,哈哈 就是因为django可以不用在后台管理上费力,也是偷偷懒吧,前些天调试一直是用Django自带的HTTP服务器,不过最近可能要先部署一些东西,为了更加接近真实的服务器环境,决定用FastCGI的方式试试。服务器选择了nginx,,出于懒人的做法,就直接在自己的windows里试试了。

首先确保你的电脑里已经安装了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,我的配置文件如下,大家可根据需要自行修改:


[html]  view plain  copy
 print ?
  1. #user  nobody;  
  2. worker_processes  1;  
  3.   
  4. #error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.   
  8. #pid        logs/nginx.pid;  
  9.   
  10.   
  11. events {  
  12.     worker_connections  1024;  
  13. }  
  14.   
  15.   
  16. http {  
  17.     include       mime.types;  
  18.     default_type  application/octet-stream;  
  19.   
  20.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  21.     #                  '$status $body_bytes_sent "$http_referer" '  
  22.     #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  23.   
  24.     #access_log  logs/access.log  main;  
  25.   
  26.     sendfile        on;  
  27.     #tcp_nopush     on;  
  28.   
  29.     #keepalive_timeout  0;  
  30.     keepalive_timeout  65;  
  31.   
  32.     #gzip  on;  
  33.   
  34.     server {  
  35.         listen       80;  
  36.         server_name  localhost;  
  37.   
  38.         #charset koi8-r;  
  39.   
  40.         #access_log  logs/host.access.log  main;  
  41.   
  42.         location / {  
  43.             root   html;  
  44.             index  index.html index.htm;  
  45.         }  
  46.   
  47.         #error_page  404              /404.html;  
  48.   
  49.         # redirect server error pages to the static page /50x.html  
  50.         #  
  51.         error_page   500 502 503 504  /50x.html;  
  52.         location = /50x.html {  
  53.             root   html;  
  54.         }  
  55.   
  56.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  57.         #  
  58.         #location ~ \.php$ {  
  59.         #    proxy_pass   http://127.0.0.1;  
  60.         #}  
  61.   
  62.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  63.         #  
  64.         #location ~ \.php$ {  
  65.         #    root           html;  
  66.         #    fastcgi_pass   127.0.0.1:9000;  
  67.         #    fastcgi_index  index.php;  
  68.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
  69.         #    include        fastcgi_params;  
  70.         #}  
  71.   
  72.         # deny access to .htaccess files, if Apache's document root  
  73.         # concurs with nginx's one  
  74.         #  
  75.         #location ~ /\.ht {  
  76.         #    deny  all;  
  77.         #}  
  78.           
  79.         # 静态资源  
  80.         location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|js)$  
  81.         {  
  82.             root e:/gin/gin/;  
  83.             expires 30d;  
  84.             break;  
  85.         }  
  86.   
  87.         location ~ ^/static/ {  
  88.             root e:/gin/gin/;  
  89.             expires 30d;  
  90.             break;  
  91.         }   
  92.   
  93.         location ~ ^/ {  
  94.             # 指定 fastcgi 的主机和端口  
  95.             fastcgi_pass 127.0.0.1:8051;  
  96.             fastcgi_param PATH_INFO $fastcgi_script_name;  
  97.             fastcgi_param REQUEST_METHOD $request_method;  
  98.             fastcgi_param QUERY_STRING $query_string;  
  99.             fastcgi_param CONTENT_TYPE $content_type;  
  100.             fastcgi_param CONTENT_LENGTH $content_length;  
  101.             fastcgi_param SERVER_PROTOCOL $server_protocol;  
  102.             fastcgi_param SERVER_PORT $server_port;  
  103.             fastcgi_param SERVER_NAME $server_name;  
  104.             fastcgi_pass_header Authorization;  
  105.             fastcgi_intercept_errors off;  
  106.         }  
  107.     }  
  108.   
  109.     # another virtual host using mix of IP-, name-, and port-based configuration  
  110.     #  
  111.     #server {  
  112.     #    listen       8000;  
  113.     #    listen       somename:8080;  
  114.     #    server_name  somename  alias  another.alias;  
  115.   
  116.     #    location / {  
  117.     #        root   html;  
  118.     #        index  index.html index.htm;  
  119.     #    }  
  120.     #}  
  121.   
  122.   
  123.     # HTTPS server  
  124.     #  
  125.     #server {  
  126.     #    listen       443;  
  127.     #    server_name  localhost;  
  128.   
  129.     #    ssl                  on;  
  130.     #    ssl_certificate      cert.pem;  
  131.     #    ssl_certificate_key  cert.key;  
  132.   
  133.     #    ssl_session_timeout  5m;  
  134.   
  135.     #    ssl_protocols  SSLv2 SSLv3 TLSv1;  
  136.     #    ssl_ciphers  HIGH:!aNULL:!MD5;  
  137.     #    ssl_prefer_server_ciphers   on;  
  138.   
  139.     #    location / {  
  140.     #        root   html;  
  141.     #        index  index.html index.htm;  
  142.     #    }  
  143.     #}  
  144.   
  145. }  

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

1
2
3
4
5
<span style="font-size:14px;">        location ~ ^/static/ {
            root e:/gin/gin/;
            expires 30d;
            break;
        }</span>

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

1
2
<span style="font-size:14px;">    cd c:\nginx\
    start nginx</span>

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

1
<span style="font-size:14px;">    python manage.py runfcgi method=threaded host=127.0.0.1 port=8051</span>

刷新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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值