Nginx安装部署
Nginx("enginex")是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。Nginx是由IgorSysoev为俄罗斯访问量第二的Rambler.ru站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。2011年6月1日,nginx1.0.4发布。
一般我们都需要先装pcre,zlib,前者为了重写rewrite,后者为了gzip压缩。
1.选定源码目录
选定目录/usr/local/
cd/usr/local/
2.安装PCRE库
cd/usr/local/
wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz
tar-zxvfpcre-8.21.tar.gz
cdpcre-8.21
./configure
make
makeinstall
3.安装zlib库
cd/usr/local/
wgethttp://zlib.net/zlib-1.2.8.tar.gz
tar-zxvfzlib-1.2.8.tar.gzcdzlib-1.2.8
./configure
make
makeinstall
4.安装ssl
cd/usr/local/
wgethttp://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar-zxvfopenssl-1.0.1c.tar.gz
./config
make
makeinstall
5.安装nginx
Nginx一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把Nginx安装到/usr/local/nginx目录下的详细步骤:
cd/usr/local/
wgethttp://nginx.org/download/nginx-1.2.8.tar.gz
tar-zxvfnginx-1.2.8.tar.gz
cdnginx-1.2.8
./configure--prefix=/usr/local/nginx
make
makeinstall
--with-pcre=/usr/src/pcre-8.21指的是pcre-8.21的源码路径。
--with-zlib=/usr/src/zlib-1.2.7指的是zlib-1.2.7的源码路径。
6.启动
确保系统的80端口没被其他程序占用,
/usr/local/nginx/sbin/nginx
检查是否启动成功:
netstat-ano|grep80有结果输入说明启动成功
打开浏览器访问此机器的IP,如果浏览器出现Welcometonginx!则表示Nginx已经安装并运行成功。
7.重启
/usr/local/nginx/sbin/nginx–sreload
8.修改配置文件
cd/usr/local/nginx/conf
vinginx.conf
9.常用配置
#nginx运行用户和组
userwwwwww;
#启动进程,通常设置成和cpu的数量相等
worker_processes4;
#全局错误日志及PID文件
pid/var/run/nginx.pid;
error_log/var/log/nginx/error.log;
events{
#epoll是多路复用IO(I/OMultiplexing)中的一种方式,但是仅用于linux2.6以上内核,可以大大提高nginx的性能
useepoll;
#单个后台workerprocess进程的最大并发链接数
worker_connections10240;
}
#设定http服务器,利用它的反向代理功能提供负载均衡支持
http{
#设定mime类型,类型由mime.type文件定义
#include/etc/nginx/mime.types;
includemime.types;
default_typeapplication/octet-stream;
#设定日志格式
access_log/var/log/nginx/access.log;
error_page400403500502503504/50x.html;
indexindex.htmlindex.shtml
autoindexoff;
fastcgi_intercept_errorson;
#sendfile指令指定nginx是否调用sendfile函数(zerocopy方式)来输出文件,对于普通应用,
#必须设为on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的uptime.
sendfileon;
#Thesearegooddefaultvalues.
tcp_nopushon;
#连接超时时间
#keepalive_timeout0;
keepalive_timeout65;
#tcp_nodelayon;
tcp_nodelayoff;
#outputcompressionsavesbandwidth
gzipoff;
#gzip_staticon;
#gzip_min_length1k;
gzip_http_version1.0;
gzip_comp_level2;
gzip_buffers416k;
gzip_proxiedany;
gzip_disable"MSIE[1-6]\.";
gzip_typestext/plaintext/htmltext/cssapplication/x-javascriptapplication/xmlapplication/xml+rsstext/javascript;
#gzip_varyon;
server_name_in_redirectoff;
#设定负载均衡的服务器列表
upstreamportals{
server172.16.68.134:8082max_fails=2fail_timeout=30s;
server172.16.68.135:8082max_fails=2fail_timeout=30s;
server172.16.68.136:8082max_fails=2fail_timeout=30s;
server172.16.68.137:8082max_fails=2fail_timeout=30s;
}
#upstreamoverflow{
#server10.248.6.34:8090max_fails=2fail_timeout=30s;
#server10.248.6.45:8080max_fails=2fail_timeout=30s;
#}
server{
#侦听8080端口
listen8080;
server_name127.0.0.1;
#403、404页面重定向地址
error_page403=http://www.e100.cn/ebiz/other/217/403.html;
error_page404=http://www.e100.cn/ebiz/other/218/404.html;
proxy_connect_timeout90;
proxy_send_timeout180;
proxy_read_timeout180;
proxy_buffer_size64k;
proxy_buffers4128k;
proxy_busy_buffers_size128k;
client_header_buffer_size16k;
large_client_header_buffers464k;
#proxy_send_timeout3m;
#proxy_read_timeout3m;
#proxy_buffer_size4k;
#proxy_buffers432k;
proxy_set_headerHost$http_host;
proxy_max_temp_file_size0;
#proxy_hide_headerSet-Cookie;
#if($host!='www.e100.cn'){
#rewrite^/(.*)$http://www.e100.cn/$1permanent;
#}
location/{
denyall;
}
location~^/resource/res/img/blue/space.gif{
proxy_passhttp://tecopera;
}
location=/{
rewrite^(.*)$/ebiz/event/517.htmllast;
}
location=/ebiz/event/517.html{
add_headerVaryAccept-Encoding;
root/data/web/html;
expires10m;
}
location=/check.html{
root/usr/local/nginx/html/;
access_logoff;
}
location=/50x.html{
root/usr/local/nginx/html/;
expires1m;
access_logoff;
}
location=/index.html{
add_headerVaryAccept-Encoding;
#定义服务器的默认网站根目录位置
root/data/web/html/ebiz;
expires10m;
}
#定义反向代理访问名称
location~^/ecps-portal/*{
#expires10m;
#重定向集群名称
proxy_passhttp://portals;
#proxy_passhttp://172.16.68.134:8082;
}
location~^/fetionLogin/*{
#expires10m;
proxy_passhttp://portals;
#proxy_passhttp://172.16.68.134:8082;
}
#location~^/business/*{
##expires10m;
#proxy_passhttp://172.16.68.132:8088;
##proxy_passhttp://172.16.68.134:8082;
#}
location~^/rsmanager/*{
expires10m;
root/data/web/;
#proxy_passhttp://rsm;
}
#定义nginx处理的页面后缀
location~*(.*)\.(jpg|gif|htm|html|png|js|css)${
root/data/web/html/;
#页面缓存时间为10分钟
expires10m;
}
#设定查看Nginx状态的地址
location~*^/NginxStatus/{
stub_statuson;
access_logoff;
allow10.1.252.126;
allow10.248.6.49;
allow127.0.0.1;
denyall;
}
#error_page405=200@405;
#location@405
#{
#proxy_passhttp://10.248.6.45:8080;
#}
access_log/data/logs/nginx/access.logcombined;
error_log/data/logs/nginx/error.log;
}
server{
listen8082;
server_name_;
location=/check.html{
root/usr/local/nginx/html/;
access_logoff;
}
}
server{
listen8088;
server_name_;
location~^/*{
root/data/web/b2bhtml/;
access_logoff;
}
}
server{
listen9082;
server_name_;
#location~^/resource/*{
#expires10m;
#root/data/web/html/;
#}
location/{
root/data/web/html/sysMaintain/;
if(!-f$request_filename){
rewrite^/(.*)$/sysMaintain.htmllast;
}
}
}
}
10.Nginx配置文件详细说明
如果要使用负载均衡的话,可以修改配置http节点如下:
#设定http服务器,利用它的反向代理功能提供负载均衡支持
http{
#设定mime类型,类型由mime.type文件定义
include/etc/nginx/mime.types;
default_typeapplication/octet-stream;
#设定日志格式
access_log/var/log/nginx/access.log;
#省略上文有的一些配置节点
#。。。。。。。。。。
#设定负载均衡的服务器列表
upstreammysvr{
#weigth参数表示权值,权值越高被分配到的几率越大
server192.168.8.1x:3128weight=5;#本机上的Squid开启3128端口
server192.168.8.2x:80weight=1;
server192.168.8.3x:80weight=6;
}
upstreammysvr2{
#weigth参数表示权值,权值越高被分配到的几率越大
server192.168.8.x:80weight=1;
server192.168.8.x:80weight=6;
}
#第一个虚拟服务器
server{
#侦听192.168.8.x的80端口
listen80;
server_name192.168.8.x;
#对aspx后缀的进行负载均衡请求
location~.*\.aspx${
root/root;#定义服务器的默认网站根目录位置
indexindex.phpindex.htmlindex.htm;#定义首页索引文件的名称
proxy_passhttp://mysvr;#请求转向mysvr定义的服务器列表
#以下是一些反向代理的配置可删除.
proxy_redirectoff;
#后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
proxy_set_headerHost$host;
proxy_set_headerX-Real-IP$remote_addr;
proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;
client_max_body_size10m;#允许客户端请求的最大单文件字节数
client_body_buffer_size128k;#缓冲区代理缓冲用户端请求的最大字节数,
proxy_connect_timeout90;#nginx跟后端服务器连接超时时间(代理连接超时)
proxy_send_timeout90;#后端服务器数据回传时间(代理发送超时)
proxy_read_timeout90;#连接成功后,后端服务器响应时间(代理接收超时)
proxy_buffer_size4k;#设置代理服务器(nginx)保存用户头信息的缓冲区大小
proxy_buffers432k;#proxy_buffers缓冲区,网页平均在32k以下的话,这样设置
proxy_busy_buffers_size64k;#高负荷下缓冲大小(proxy_buffers*2)
proxy_temp_file_write_size64k;#设定缓存文件夹大小,大于这个值,将从upstream服务器传
}
}
}