4.2.3.2.1 环境:
1、Linux:centos6.4(32位)
2、Gcc的编译环境。使用make命令编辑。
yum install gcc-c++
3、PCRE
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre库。
yum install -y pcre pcre-devel
注:pcre-devel是使用pcre开发的一个二次开发库。nginx也需要此库。
4、zlib
zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。
yum install -y zlib zlib-devel
5、openssl
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。
nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。
yum install -y openssl openssl-devel
4.2.3.2.2 安装步骤
第一步:把Nginx的安装包上传到linux系统。
第二步:解压压缩包。
[root@bogon ~]# tar -zxf nginx-1.8.0.tar.gz
第三步:进入源码目录。
参数设置如下:
./configure \
–prefix=/usr/local/nginx \
–pid-path=/var/run/nginx/nginx.pid \
–lock-path=/var/lock/nginx.lock \
–error-log-path=/var/log/nginx/error.log \
–http-log-path=/var/log/nginx/access.log \
–with-http_gzip_static_module \
–http-client-body-temp-path=/var/temp/nginx/client \
–http-proxy-temp-path=/var/temp/nginx/proxy \
–http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
–http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
–http-scgi-temp-path=/var/temp/nginx/scgi
第四步:make
第五步:make install
注意:上边将临时文件目录指定为/var/temp/nginx,需要在/var下创建temp及nginx目录
4.2.4 Nginx的启动和停止
在nginx的安装目录(/usr/local/nginx/sbin)下有一个nginx的可执行文件。
启动:[root@bogon sbin]# ./nginx
访问测试:http://192.168.25.133
关闭服务:
[root@bogon sbin]# ./nginx -s stop
重新加载配置文件:
[root@bogon sbin]# ./nginx -s reload
关闭防火墙:[root@bogon sbin]# service iptables stop
==============================================
4.2.5 Nginx实现虚拟机
1、可以使用ip地址区分网站。
2、使用端口区分网站
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 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 81;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html81;
index index.html index.htm;
}
}
}
===========================
4.2.6 通过域名区分虚拟机
域名:为了便于记忆。
网站
一个域名对应一个ip地址。
一个ip地址可以对应多个域名。
Nginx虚拟机可以通过域名区分访问哪个网站。
4.2.6.1 可以修改host文件修改域名的指向。
如果本地host文件中有域名和ip的对应关系,不走dns服务器。直接访问。
Host文件的存放路径:
修改window的hosts文件:(C:\Windows\System32\drivers\etc)
4.2.6.2 修改nginx的配置文件:
server {
listen 80;
server_name test1.taotao.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-test1;
index index.html index.htm;
}
}
server {
listen 80;
server_name test2.taotao.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html-test2;
index index.html index.htm;
}
}
4.2.7 Nginx的反向代理
正向代理:
Tomcat1
反向代理:
反向代理的原理就是请求的转发。反向代理服务器没有业务逻辑。
使用nginx做反向代理,访问同一个域名让两个Tomcat提供服务。
第一步:启动两个Tomcat
第二步:修改host配置域名。
第三步:配置nginx。
upstream tomcat1 {
server 192.168.25.133:8080;
server 192.168.25.133:8081;
}
server {
listen 80;
server_name images.taotao.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://tomcat1;
index index.html index.htm;
}
}
第四步:重新加载配置文件
4.2.8 负载均衡