一、Nginx安装
1、使用yum/rpm安装
rhel以及centos系列未将Nginx收录到发行版本,所以Nginx官方的rpm包存在于epel源
1.在/etc/yum.repos.d/中创建nginx.repo [root@Nginx ~]# vim /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/6/x86_64 gpgcheck=0 enabled=1 2.直接yum安装,默认安装最新的Stable版本 [root@Nginx ~]# yum install nginx
2、源码编译安装
源码获取地址:http://nginx.org/en/download.html
1.目前的Stable版本为1.10.3 [root@Nginx ~]# wget http://nginx.org/download/nginx-1.10.3.tar.gz 2.创建nginx用户与组,禁止创建家目录,禁止nginx用户登录 [root@Nginx ~]# groupadd nginx [root@Nginx ~]# useradd nginx -s /sbin/nologin -g nginx -M 3.编译安装 准备编译环境, Development Tools,我这里字符编码为中文,所以是开发工具 [root@Nginx ~]# yum groupinstall 开发工具 安装pcre包支持正则,openssl支持https,gd包为支持流媒体格式,zlib包支持gzip传输 [root@Nginx ~]# yum install pcre-devel openssl-devel gd-devel zlib zlib-devel [root@Nginx ~]# tar xf nginx-1.10.3.tar.gz [root@Nginx ~]# cd nginx-1.10.3 定制要编译属性 [root@Nginx nginx-1.10.3]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-http_v2_module --with-ipv6 安装 [root@Nginx nginx-1.10.3]# make && make install
二、Nginx启动及测试(以源码编译安装为例)
1、将nginx二进制执行文件复制到PATH定义的可执行文件路径中
[root@Nginx ~]# cp /usr/local/nginx/sbin/nginx /usr/bin/ [root@Nginx ~]# nginx
2、查看服务及端口是否启动
[root@Nginx ~]# ss -tunlp | grep 80 tcp LISTEN 0 128 *:80 *:* users:(("nginx",8993,6),("nginx",8994,6)) [root@Nginx ~]# ps -ef | grep nginx root 8993 1 0 17:38 ? 00:00:00 nginx: master process nginx nginx 8994 8993 0 17:38 ? 00:00:00 nginx: worker process root 9003 1632 0 17:40 pts/0 00:00:00 grep nginx
3、测试连接(关闭SELinux,iptables关闭或定义规则)
[root@Nginx ~]# curl 192.168.0.110 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p> <p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p> <p><em>Thank you for using nginx.</em></p> </body> </html>
三、Nginx配置文件
1、nginx编译安装目录结构
[root@Nginx local]# tree nginx/ nginx/ ├── client_body_temp ├── conf │ ├── fastcgi.conf │ ├── fastcgi.conf.default │ ├── fastcgi_params │ ├── fastcgi_params.default │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── mime.types.default │ ├── nginx.conf │ ├── nginx.conf.default │ ├── scgi_params │ ├── scgi_params.default │ ├── uwsgi_params │ ├── uwsgi_params.default │ └── win-utf ├── fastcgi_temp ├── html │ ├── 50x.html │ └── index.html ├── logs │ ├── access.log │ ├── error.log │ └── nginx.pid ├── proxy_temp ├── sbin │ └── nginx ├── scgi_temp └── uwsgi_temp
2、nginx.conf主配置文件
[root@Nginx conf]# grep -E -v "#|^$" nginx.conf worker_processes 1; worker_cpu_affinity 0001; worker_rlimit_nofile 65535; events { worker_connections 20480; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
worker_processes:定义工作线程数,建议比cpu核心数少一些,可以进行cpu核心绑定提高性能,例如:
worker_processes 4; worker_cpu_affinity 0001 0010 0100 1000; worker_rlimit_nofile:每个worker进程最大打开文件数,可以设置为0-65535
worker_connections:每个worker进程能处理的最大连接请求
include:导入配置文件
default_type:Nginx默认支持的媒体类型库文件
sendfile:高效传输
keepalive_timeout:持久连接时长,默认为65,0为关闭
listen:监听的端口
server_name:域名或主机名
root:工作的家目录
index:默认显示的首页文件
error_page:错误页信息
http区段:定义http服务的相关属性及模块,包含一个或多个server区段
server区段:定义虚拟主机的相关配置,包含一个或多个location区段
location区段:通过指定模式来与客户端请求的URI相匹配
更多Nginx主要配置详见官网:
http://nginx.org/en/docs/ngx_core_module.html
本文出自 “linux启航” 博客,请务必保留此出处http://jiayimeng.blog.51cto.com/10604001/1895058
原文:http://jiayimeng.blog.51cto.com/10604001/1895058