安装Django+Flup+Nginx 于 Windows 平台
参考文件:http://firehuman.blog.163.com/blog/static/573311201052455233391/原本是要安装Lighttpd+Flup+Django 后来发现Nginx比Lighttpd还优,所以就试着安装看看,果然是真的比Lighttpd还容易安装,看网路文章说它还比较强,所以是轻量级web server不错的选择。有关Apache、Nginx、Lighttpd评比的相关比较及评比,请参阅。
==========================================================
一. 先前工作:
1.) 先安装 python25 及Django
2.) 建立一个mysite的目录(自己设定的专案名称)
==========================================================
二. 下载及安装stable Nginx 版本
1.) 下载stable nginx-0.7.67 ( nginx网站及说明)
2.) 解压缩将目录放至C:\ (最好将目录也改成nginx)
3.) 执行C:\nginx.exe即可启动web server
4.) 在IE网址上打http://localhost/ 没问题的话就会出现一个网页"Welcome to nginx!"
5.) 首页的位址在C:\nginx\html\index.html 视需要可以更改成你自己想要的,但主要我们还要衔接Django所以改了也没用。
6.) 要中止网站执行,需要在dos command 的视窗中执行taskkill /f /im nginx.exe
1.) 下载stable nginx-0.7.67 ( nginx网站及说明)
2.) 解压缩将目录放至C:\ (最好将目录也改成nginx)
3.) 执行C:\nginx.exe即可启动web server
4.) 在IE网址上打http://localhost/ 没问题的话就会出现一个网页"Welcome to nginx!"
5.) 首页的位址在C:\nginx\html\index.html 视需要可以更改成你自己想要的,但主要我们还要衔接Django所以改了也没用。
6.) 要中止网站执行,需要在dos command 的视窗中执行taskkill /f /im nginx.exe
================================================== ========三. 网站设定
1.) 网站设定文件在C:\nginx\conf\nginx.conf
2.) 档案路径设定方式有二种/cygdrive/C/mysiteC:/mysite
但试过第一种设定在windows上会有问题(Django的admin管理端执行时画面会出错),建议使用第二种设定。
3.) 最好将原本的nginx.conf设定档改名不要删除,以备后续还原,将下列内容取代原本的设定档。
1.) 网站设定文件在C:\nginx\conf\nginx.conf
2.) 档案路径设定方式有二种/cygdrive/C/mysiteC:/mysite
但试过第一种设定在windows上会有问题(Django的admin管理端执行时画面会出错),建议使用第二种设定。
3.) 最好将原本的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 64;
}
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;
#root /cygdrive/D/html;
root C:/mysite;
index index.html index.htm;
charset utf-8;
#access_log logs/host.access.log main;
location ^~ /media/ {
alias C:/Python25/Lib/site-packages/django/contrib/admin/media/;
}
# 可接受的資料來源
location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
{
expires 30d;
break;
}
location / {
# 指定 fastcgi 的主機與接口 8051為與django接口的port
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;
}
#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;
#}
}
# 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 ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
==========================================================
==========================================================
四. 安装flup
flup是用来作为python实现WSGI的接口,相关说明:http://trac.saddi.com/flup
1.) 下载网址:http://www.saddi.com/software/flup/dist/ 下载flup-1.0.2.tar.gz 并解压缩
2.) 至解压缩目录执行python setup.py install 进行安装。
3.) 安装成功则会出现下列讯息:
flup是用来作为python实现WSGI的接口,相关说明:http://trac.saddi.com/flup
1.) 下载网址:http://www.saddi.com/software/flup/dist/ 下载flup-1.0.2.tar.gz 并解压缩
2.) 至解压缩目录执行python setup.py install 进行安装。
3.) 安装成功则会出现下列讯息:
Installed f:\python25\lib\site-packages\flup-1.0.2-py2.5.egg
Processing dependencies for flup==1.0.2
Finished processing dependencies for flup==1.0.2
==========================================================
五. Django 与 Nginx的结合
利用port 8051作为Django与Nginx的接口
1.) 在mysite目录中执行
python manage.py runfcgi method=threaded host=127.0.0.1 port=8051
2.) 至nginx安装的目录中执行nginx.exe
3.) 执行完成后,开启IE输入网址http://localhost/ 即可完成,1.) 与2.) 的顺序可替换
利用port 8051作为Django与Nginx的接口
1.) 在mysite目录中执行
python manage.py runfcgi method=threaded host=127.0.0.1 port=8051
2.) 至nginx安装的目录中执行nginx.exe
3.) 执行完成后,开启IE输入网址http://localhost/ 即可完成,1.) 与2.) 的顺序可替换
==========================================================
六. 制作成Windows Service(服务)
1.) 下载Windows Server 2003 Resource Kit Tools 安装于%ProgramFiles%\Windows Resource Kits\Tools\
2.) 假设nginx.exe在C:\nginx\ ,python安装在C:\python25\,Django网站在C:\mysite\
3.) 将 nginx 服务文件放置于C:\doc\nginx\
3-1.) 在目录中建置文件reg_service.bat 内容如下
1.) 下载Windows Server 2003 Resource Kit Tools 安装于%ProgramFiles%\Windows Resource Kits\Tools\
2.) 假设nginx.exe在C:\nginx\ ,python安装在C:\python25\,Django网站在C:\mysite\
3.) 将 nginx 服务文件放置于C:\doc\nginx\
3-1.) 在目录中建置文件reg_service.bat 内容如下
"%ProgramFiles%\Windows Resource Kits\Tools\instsrv.exe" Nginx "%ProgramFiles%\Windows Resource Kits\Tools\srvany.exe"
pause
粗体为服务名称,应避免与现用服务名称冲突。
3-2.) 继续在目录中建立reg_service.reg 注册表
3-3.) 继续建立start_service.bat 来作为手动启动服务,电脑重新启动后此服务会自动启动。
sc delete Nginx
粗体为服务名称,应避免与现用服务名称冲突。
3-2.) 继续在目录中建立reg_service.reg 注册表
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NGINX\Parameters]
"Application"="C:\\nginx\\nginx.exe"
"AppParameters"=""
"AppDirectory"="C:\\nginx\\"
3-3.) 继续建立start_service.bat 来作为手动启动服务,电脑重新启动后此服务会自动启动。
net start Nginx
pause
3-4.) 继续建立stop_service.bat 用于停止服务。
net stop Nginx
rem pause
taskkill /f /im nginx.exe
taskkill /f /im nginx.exe
taskkill /f /im nginx.exe
taskkill /f /im nginx.exe
pause
因为nginx.exe的行程至少有2个以上,net Stop只能停止一个,其他的行程必须利用winodws command line 的taskkill 去终止。
3-5.) 继续建立del_service.bat 用于删除服务
3-5.) 继续建立del_service.bat 用于删除服务
sc delete Nginx
pause
4.) 下面为建立fastcgi 的服务,把下面的所有文件设置在目录C:\doc\mysite\
4-1.) reg_service.bat
4-1.) reg_service.bat
"%ProgramFiles%\Windows Resource Kits\Tools\instsrv.exe" fastcgi_mysite "%ProgramFiles%\Windows Resource Kits\Tools\srvany.exe"
pause
4-2.) reg_service.reg
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\fastcgi_mysite\Parameters]
"Application"="C:\\Python25\\python.exe"
"AppParameters"="manage.py runfcgi method=threaded host=127.0.0.1 port=8051"
"AppDirectory"="C:\\mysite\\"
4-3.) start_service.bat
net start fastcgi_mysite
pause
4-4.) stop_service.bat
net stop fastcgi_mysite
pause
4-5.) del_service.bat
sc delete fastcgi_mysite
pause
5. ) 执行步骤:
依次执行 C:\doc\mysite\ 下的
依次执行 C:\doc\mysite\ 下的
reg_service.bat
reg_service.reg
start_service.bat
即可启动django以fastcgi方式执行在127.0.0.1:8051的服务
继续执行 C:\doc\nginx\ 下的
reg_service.bat
reg_service.reg
start_service.bat
即可启动 nginx 服务
reg_service.reg
start_service.bat
即可启动django以fastcgi方式执行在127.0.0.1:8051的服务
继续执行 C:\doc\nginx\ 下的
reg_service.bat
reg_service.reg
start_service.bat
即可启动 nginx 服务
================================================== ========七. 建立网站启动及停止服务的bat 档
在建立bat档之前请确认六. 的5.)可正确执行。 (bat写法参考网址:http://ca95.pixnet.net/blog/post/3922827)
在建立bat档之前请确认六. 的5.)可正确执行。 (bat写法参考网址:http://ca95.pixnet.net/blog/post/3922827)
1.) 网站启动:将六. 所档案中的pause移除,建立一个nginx_django_webstart.bat
call C:\doc\mysite\ start_service.bat
call C:\doc\nginx\start_service.bat
call C:\doc\mysite\ start_service.bat
call C:\doc\nginx\start_service.bat
2.) 网站停止服务:nginx_django_webstop.bat
call C:\doc\mysite\stop_service.bat
call C:\doc\nginx\stop_service.bat
call C:\doc\nginx\stop_service.bat
没有评论:
发表评论