2 下载pcre,这个是一个正则表达式的库,nginx做rewriter的时候回用到这个库:
选中右击复制所需要的版本:
4.将下面安装文件上传到linux服务器上:
5 开始安装nginx。
在正式开始前,编译环境gcc g++开发库之类的需要提前安装好,这里默认你已经安装好。ubuntu平台环境可以使用以下指令
apt-get install build-essential
apt-get install libtool
centos平台编译环境使用如下指令
安装make
yum -y install gcc automake autoconf libtool make
安装g++
yum install gcc gcc-c++
nginx依赖以下模块:
gzip模块需要zlib库
rewrite模块需要pcre库
ssl功能需要openssl库
一般我们需要先安装pcre,zlib,前者为了重写rewrite,后者为了gzip压缩。
选定源码目录,选定/usr/local/src
下载openssl,地址:ftp://ftp.openssl.org/source/
tar -zxvf openssl-1.0.1c.tar.gz (下载稳定版本)
cd openssl-1.0.1c
./config && make && make install
安装pcre
tar zxvf pcre-8.37.tar.gz
cd pcre-8.37
./configure && make && make install
安装zlib库
tar zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure && make && make install
安装nginx.
nginx一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中的一个,下面是把nginx安装到/usr/local/nginx目录的详细步骤如下:
tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
mkdir /usr/local/nginx
groupadd -r nginx
useradd -r -g nginx -s /bin/false -m nginx
#注意 \ 前面至少一个有空格
[root@localhost src]# cd nginx-1.8.0
[root@localhost nginx-1.8.0]# groupadd -r nginx
[root@localhost nginx-1.8.0]# useradd -r -gnginx -s /bin/false -m nginx
##注意:下面的with后面的路径要正确。若是不正确,请确定后重新编写下面的路径配置。
[root@localhost nginx-1.8.0]# ./configure--sbin-path=/usr/local/nginx/nginx \
>--conf-path=/usr/local/nginx/nginx.conf \
> --pid-path=/usr/local/nginx/nginx.pid\
> --with-http_ssl_module \
> --with-pcre=../pcre-8.37 \ #指向解压的源码目录
> --with-zlib=../zlib-1.2.8 \ #指向解压的源码目录
> --with-openssl=../openssl-1.0.1c \ #指向解压的源码目录
> --with-http_stub_status_module \
> --user=nginx \
> --group=nginx;
make && make install
在此过程中还可以使用下面的模块:
> --with-http_gzip_static_module \
> --with-http_mp4_module \
> --with-http_flv_module \
安装后的现象:
进入/usr/local/nginx,发现有如下内容:
启动nginx
/usr/local/nginx/nginx #不指定配置文件地址
/usr/local/nginx/nginx -c/usr/local/nginx/nginx.conf #指定配置文件地址
若此过程中出现了如下错误:
nginx: [emerg] bind() to0.0.0.0:80 failed (98: address already in use)
使用命令关闭占用80端口的程序
sudo fuser -k 80/tcp
停止服务:
kill `cat /usr/local/nginx/nginx.pid`
在浏览器中输入:192.168.6.25(如果是本机输入localhost)如果看到欢迎界面则安装成功:
虚拟主键配置:
只需要更改server_name为对应的网站域名即可:
/usr/local/nginx
vim nginx.conf
检测配置文件
/usr/local/nginx/nginx -t
重新加载配置文件(不停止服务)
/usr/local/nginx/nginx -s reload
nginx编译参数解析:
–prefix #nginx安装目录,默认在/usr/local/nginx
–pid-path #pid问件位置,默认在logs目录
–lock-path #lock问件位置,默认在logs目录
–with-http_ssl_module #开启http ssl模块,以支持https请求。
–with-http_dav_module #开启webdav扩展动作模块,可为文件和目录指定权限
–with-http_flv_module #支持对flv文件的拖动播放
–with-http_realip_module #支持显示真实来源ip地址
–with-http_gzip_static_module #预压缩文件传前检查,防止文件被重复压缩
–with-http_stub_status_module #取得一些nginx的运行状态
–with-mail #允许pop3/imap4/smtp代理模块
–with-mail_ssl_module #允许pop3/imap/smtp可以使用ssl/tls
–with-pcre=../pcre-8.11 #注意是未安装的pcre路径
–with-zlib=../zlib-1.2.5 #注意是未安装的zlib路径
–with-debug #允许调试日志
–http-client-body-temp-path #客户端请求临时文件路径
–http-proxy-temp-path #设置http proxy临时文件路径
–http-fastcgi-temp-path #设置http fastcgi临时文件路径
–http-uwsgi-temp-path=/var/tmp/nginx/uwsgi #设置uwsgi 临时文件路径
–http-scgi-temp-path=/var/tmp/nginx/scgi #设置scgi 临时文件路径
6 nginx.conf配置说明:
nginx.conf是主配置文件。
worker_processes 表示工作进程的数量,一般设置为cpu的核数
worker_connections 表示每个工作进程的最大连接数
server{}块定义了虚拟主机
listener监听端口
server_name监听域名
location{}是用来匹配的uri进行配置,uri即语法中的”/uri”。location /{}匹配任何查询,因为所有请求都以/开头。
root 指定对应uri的资源查找路径,这里html位相对路径,完整路径为/usr/local/nginx/html
index指定首页index文件的名称,可以配置多个,以空格分开。如有多个,按配置顺序查找。
从配置可以看出,nginx监听了80端口、域名为localhost、跟路径为html文件夹(我的安装路径为/usr/local/nginx,所以:/usr/local/nginx/html),默认index文件为index.html,index.htm、服务器错误重定向到50x.html页面。
可以看到/usr/local/nginx/html/有以下文件:
[root@localhost html]# cd /usr/local/nginx/html/
[root@localhost html]# ls
50x.html index.html
7 接下来配置一个web项目:
(1)、将web项目上传到/usr/local/nginx/html目录下,目录内容如下:
修改vim nginx.conf的配置,新增的内容如下:
不用关闭nginx的方式启动nginx:
/usr/local/nginx/nginx -c/usr/local/nginx/nginx.conf -s reload
如果发现虚拟机外不能访问,其实是防火墙的问题,需要将防火墙关闭,关闭防火墙的代码如下:
service iptables stop
8 mime.types配置
文件扩展名与文件类型映射表,nginx根据映射关系,设置http请求响应头的content-type值。当在映射表找不到时,使用nginx.conf中default-type指定的默认值。例如,默认配置中的指定的default-type为application/octet-stream
include mime.types;
default_type application/octet-stream;
默认
下面截取一段mime.types定义的文件扩展名与文件类型映射关系,如下:
9 其它
fastcgi_params
nginx配置fastcgi解析时会调用fastcgi_params配置文件来传递服务器变量,这样cgi中可以获取到这些变量的值。默认传递以下变量:
<a target="_blank" href="http://images.cnitblog.com/blog/92071/201412/051025550617368.png"></a>
这些变量的作用从其命名可以看出。
fastcgi.conf
对比下fastcgi.conf与fastcgi_params文件,可以看出只有以下差异:
/usr/local/nginx/conf$ diff fastcgi.conf fastcgi_params
2d1
< fastcgi_param script_filename $document_root$fastcgi_script_name;
即fastcgi.conf只比fastcgi_params多了一行“fastcgi_param script_filename $document_root$fastcgi_script_name;”
原本nginx只有fastcgi_params,后来发现很多人在定义script_filename时使用了硬编码的方式。例如,fastcgi_param script_filename/var/www/foo$fastcgi_script_name。于是为了规范用法便引入了fastcgi.conf。
不过这样的话就产生一个疑问:为什么一定要引入一个新的配置文件,而不是修改旧的配置文件?这是因为fastcgi_param指令是数组型的,和普通指令相同的是:内层替换外层;和普通指令不同的是:当在同级多次使用的时候,是新增而不是替换。换句话说,如果在同级定义两次script_filename,那么它们都会被发送到后端,这可能会导致一些潜在的问题,为了避免此类情况,便引入了一个新的配置文件。
因此不再建议大家使用以下方式(搜了一下,网上大量的文章,并且nginx.conf的默认配置也是使用这种方式):
fastcgi_param script_filename$document_root$fastcgi_script_name;
include fastcgi_params;
而使用最新的方式:
include fastcgi.conf;
uwsgi_params
与fastcgi_params一样,传递哪些服务器变量,只有前缀不一样,以uwsgi_param开始而非fastcgi_param。
scgi_params
koi-utf、koi-win、win-utf
这三个文件都是与编码转换映射文件,用于在输出内容到客户端时,将一种编码转换到另一种编码。
koi-win: charset_map koi8-r < -- > windows-1251
koi-utf: charset_map koi8-r < -- > utf-8
win-utf: charset_map windows-1251 < -- > utf-8