nginx安装、配置(linux下)

Nginx (“engine x”) 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器,在高连接并发的情况下Nginx 是 Apache 服务器不错的替代品.其特点是占有内存少,并发能力强。

安装

1)下载nginx,在官网http://nginx.org/download/ 上下载相应的版本

wget http://nginx.org/download/nginx-1.5.9.tar.gz

2)解压:

tar -xvzf nginx-1.7.5.tar.gz

3)编译:
编译 (make)的过程是把各种语言写的源码文件,变成可执行文件和各种库文件。

cd nginx-1.7.5
./configure –prefix=/usr/local/nginx

注: –prefix表示要安装的目录,可以不指定、直接默认安装。

4)安装 :
安装(make install)是把这些编译出来的可执行文件和库文件复制到合适的地方

make install

5)在configure的时候可能有如下错误

1
2
3
4
5
6
checking for PCRE library in /opt/local/ ... not found

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

安装pcre-devel解决问题

yum -y install pcre-devel

也有可能遇到下面问题,

1
2
3
4
5
./configure: error: the HTTP cache module requires md5 functions
from OpenSSL library. You can either disable the module by using
--without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with nginx by using
--with-http_ssl_module --with-openssl=<path> options.

安装openssl 解决问题

yum -y install openssl openssl-devel

6)启动

  • 启动:

    cd /usr/local/nginx/sbin
    ./nginx

  • 修改了配置文件后最好先检查一下修改过的配置文件是否正确:

    /usr/nginx/sbin/nginx -t

  • 平滑重启:

    /usr/nginx/sbin/nginx -s reload

配置

Nginx 就一个配置文件,位于/usr/local/nginx/conf 下nginx.conf

1、Nginx 的 Location 配置指令块:

Nginx 允许用户定义 Location block ,并指定一个匹配模式(pattern)匹配特定的 URI。除了简单的字符串(比如文件系统路径),还允许使用更为复杂的匹配模式(pattern)。Location 配置项在http > server 里面。

1)Location block 的基本语法形式是:

location [=|~|~*|^~|@] pattern { … }

[=|~|~*|^~|@] 被称作 location modifier ,这会定义 Nginx 如何去匹配其后的 pattern ,以及该 pattern 的最基本的属性(简单字符串或正则表达式)。

2)关于 location modifier:

  • =
    这会完全匹配指定的 pattern ,且这里的 pattern 被限制成简单的字符串,也就是说这里不能使用正则表达式。
1
2
3
4
5
6
server {
server_name website.com;
location = /abcd {
[…]
}
}

匹配情况:
http://website.com/abcd # 正好完全匹配
http://website.com/ABCD # 如果运行 Nginx server 的系统本身对大小写不敏感,比如 Windows ,那么也匹配
http://website.com/abcd?param1¶m2 # 忽略查询串参数(query string arguments),这里就是 /abcd 后面的 ?param1¶m2
http://website.com/abcd/ # 不匹配,因为末尾存在反斜杠(trailing slash),Nginx 不认为这种情况是完全匹配
http://website.com/abcde # 不匹配,因为不是完全匹配

  • (None)
    可以不写 location modifier ,Nginx 仍然能去匹配 pattern 。这种情况下,匹配那些以指定的 patern 开头的 URI,注意这里的 URI 只能是普通字符串,不能使用正则表达式。
1
2
3
4
5
6
server {
server_name website.com;
location /abcd {
[…]
}
}

匹配情况:
http://website.com/abcd # 正好完全匹配
http://website.com/ABCD # 如果运行 Nginx server 的系统本身对大小写不敏感,比如 Windows ,那么也匹配
http://website.com/abcd?param1¶m2 # 忽略查询串参数(query string arguments),这里就是 /abcd 后面的 ?param1¶m2
http://website.com/abcd/ # 末尾存在反斜杠(trailing slash)也属于匹配范围内
http://website.com/abcde # 仍然匹配,因为 URI 是以 pattern 开头的

  • ~
    这个 location modifier 对大小写敏感,且 pattern 须是正则表达式
1
2
3
4
5
6
server {
server_name website.com;
location ~ ^/abcd$ {
[…]
}
}

匹配情况:
http://website.com/abcd # 完全匹配
http://website.com/ABCD # 不匹配,~ 对大小写是敏感的
http://website.com/abcd?param1¶m2 # 忽略查询串参数(query string arguments),这里就是 /abcd 后面的 ?param1¶m2
http://website.com/abcd/ # 不匹配,因为末尾存在反斜杠(trailing slash),并不匹配正则表达式 ^/abcd$
http://website.com/abcde # 不匹配正则表达式 ^/abcd$

注意:对于一些对大小写不敏感的系统,比如 Windows ,~ 和 ~ 都是不起作用的,这主要是操作系统的原因。*

  • ~*
    与 ~ 类似,但这个 location modifier 不区分大小写,pattern 须是正则表达式
1
2
3
4
5
6
server {
server_name website.com;
location ~* ^/abcd$ {
[…]
}
}

匹配情况:
http://website.com/abcd # 完全匹配
http://website.com/ABCD # 匹配,这就是它不区分大小写的特性
http://website.com/abcd?param1¶m2 # 忽略查询串参数(query string arguments),这里就是 /abcd 后面的 ?param1¶m2
http://website.com/abcd/ # 不匹配,因为末尾存在反斜杠(trailing slash),并不匹配正则表达式 ^/abcd$
http://website.com/abcde # 不匹配正则表达式 ^/abcd$

  • ^~
    匹配情况类似 2. (None) 的情况,以指定匹配模式开头的 URI 被匹配,不同的是,一旦匹配成功,那么 Nginx 就停止去寻找其他的 Location 块进行匹配了(与 Location 匹配顺序有关)

  • @
    用于定义一个 Location 块,且该块不能被外部 Client 所访问,只能被 Nginx 内部配置指令所访问,比如 try_files or error_page

3)搜索顺序以及生效优先级:

因为可以定义多个 Location 块,每个 Location 块可以有各自的 pattern 。因此就需要明白(不管是 Nginx 还是你),当 Nginx 收到一个请求时,它是如何去匹配 URI 并找到合适的 Location 的。
要注意的是,写在配置文件中每个 Server 块中的 Location 块的次序是不重要的,Nginx 会按 location modifier 的优先级来依次用 URI 去匹配 pattern ,顺序如下:

1、 =
2、 (None) 如果 pattern 完全匹配 URI(不是只匹配 URI 的头部)
3、 ^~
4、 ~ 或 ~*
5、 (None) pattern 匹配 URI 的头部

2、nginx 一些全局配置项含义:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#配置用户和用户组
user www www;
#工作进程数,建议设置为CPU的总核数
worker_processes 2;
#全局错误日志定义类型,日志等级从低到高依次为: debug | info | notice | warn | error | crit
error_log logs/error.log info;
#记录主进程ID的文件
pid /usr/local/nginx/nginx.pid;
#一个进程能打开的文件描述符最大值,理论上该值因该是最多能打开的文件数除以进程数。但是由于nginx负载并不是完全均衡的,
#所以这个值最好等于最多能打开的文件数。执行 sysctl -a | grep fs.file 可以看到linux文件描述符。
worker_rlimit_nofile 65535;
#工作模式与连接数上限
events {
#工作模式,linux2.6版本以上用epoll
use epoll;
#单个进程允许的最大连接数
worker_connections 65535;

}