一、六个模块的作用
全局块:全局配置,对全局生效;
events块:配置影响 Nginx 服务器与用户的网络连接;
http块:配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置;
server块:配置虚拟主机的相关参数,一个 http 块中可以有多个 server 块;
location块:用于配置匹配的 uri ;
upstream:配置后端服务器具体地址,负载均衡配置不可或缺的部分。
**二、**认识Nginx服务的主配置文件
2.1 全局配置模块
是配置文件从头开始到 events 块之间的内容,主要设置的是影响nginx服务器整体运行的配置指令。比如 worker_process值越大,可以支持的并发处理量也越多,但是还是和服务器的硬件相关。
bash
vim /usr/local/nginx/conf/nginx.conf #主配置文件位置
bash
#user nobody; #运行用户,若编译时未指定则默认为 nobody
worker_processes 1; #工作进程数量,一般设置为和 CPU 核数一样;设置为auto,nginx将会自己获取这个数值
#error_log logs/error.log; #错误日志文件的位置
#pid logs/nginx.pid; #PID 文件的位置
worker_rlimit_nofile 60000; #设置所有worker进程最大可以打开的文件数,默认为1024
2.2 I/O 事件配置
bash
events {
use epoll; #使用 epoll I/O模型,2.6及以上版本的系统内核,建议使用epoll模型以提高性能
worker_connections 60000; #每个进程处理 60000 个连接默认是1024个
multi_accept on; #是否一次性将监听到的连接全接收进来,默认为off,关闭时一次接收一条连接
accept_mutex on; #默认为on,开启时表示以串行方式接入新连接,否则将通报给所有worker。这可能会浪费资源并产生不可预计的后果,例如惊群问题
}
如果提高每个进程的连接数还需执行"ulimit -n 65535"命令临时修改本地每个进程可以同时打开的最大文件数。
永久修改的方式:
bash
[root@CXK /opt/nginx-1.24.0/conf]#vim /etc/security/limits.conf
bash
#在Linux平台上,在进行高并发TCP连接处理时,最高的并发数量都要受到系统对用户单一进程同时可打开文件数量的限制(这是因为系统为每个TCP连接都要创建一个socket句柄,每个socket句柄同时也是一个文件句柄)。
#可使用ulimit -a命令查看系统允许当前用户进程打开的文件数限制。
#epoll是Linux内核为处理大批句柄而作改进的poll,是Linux下多路复用IO接口select/poll的增强版本,它能显著的减少程序在大量并发连接中只有少量活跃的情况下的系统CPU利用率。(实现异步非阻塞)
2.3 HTTP配置
bash
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; ##只在sendfile on时有效。调用tcp_cork方法,让数据包不会马上传送出去,等到数据包最大时,一次性的传输出去,这样有助于解决网络堵塞。默认为off。
#keepalive_timeout 0; ##连接保持超时时间,单位是秒
keepalive_timeout 65; ##连接保持超时时间,单位是秒
#gzip on; ##gzip模块设置,设置是否开启gzip压缩输出
2.4 web服务监听设置
bash
server {
listen 80; ##监听地址及端口
server_name www.kgc.com; ##站点域名,可以有多个,用空格隔开
charset utf-8; ##网页的默认字符集
location / { ##根目录配置
root html; ##网站根目录的位置/usr/local/nginx/html
index index.html index.php; ##默认首页文件名
}
error_page 500 502 503 504 /50x.html; ##内部错误的反馈页面
location = /50x.html { ##错误页面配置
root html;
}
}
}
2.5 其他设置
bash
日志格式设定:
$remote_addr与$http_x_forwarded_for用以记录客户端的ip地址;
$remote_user:用来记录客户端用户名称;
$time_local: 用来记录访问时间与时区;
$request: 用来记录请求的url与http协议;
$status: 用来记录请求状态;成功是200,
$body_bytes_sent :记录发送给客户端文件主体内容大小;
$http_referer:用来记录从哪个页面链接访问过来的;
$http_user_agent:记录客户浏览器的相关信息;
通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,通过$remote_add拿到的IP地址是反向代理服务器的iP地址。反向代理服务器在转发请求的http头信息中,可以增加x_forwarded_for信息,用以记录原有客户端的IP地址和原来客户端的请求的服务器地址。
location常见配置指令,root、alias、proxy_pass
root(根路径配置):root /var/www/html
处理方式: root路径+location路径
请求www.kgc.com/test/1.html,会返回文件/var/www/html/test/1.html
alias(别名配置):alias /var/www/html
处理方式:alias路径替换location路径
请求www.yang.com/test/1.html,会返回文件/var/www/html/1.html
root和alias对比
|--------------------------------------------------------------------------------------------|
| 当设置 location /test{ } alias /var/www/html 和 root /var/www/html 有什么区别? |
| alias是别名设置,将设置的网页放在/var/www/html下,访问 root 是根目录设置 ,将设置的网页放在 /var/www/html/test 下,访问 |
三、nginx访问状态统计
1. 查看访问统计配置的相关模块
bash
cat /opt/nginx-1.24.0/auto/options | grep YES #可查看 nginx 已安装的所有模块
bash
[root@CXK ~]#/usr/local/nginx/sbin/nginx -V 或者nginx -V 查看已安装的 Nginx 是否包含 HTTP_STUB_STATUS 模块
2. 修改主配置文件,添加访问状态统计模块
bash
#主配置备份,防止设置错误,无法还原
cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.bak
修改主配配置具体操作:
bash
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.cxk.com; #主机名设置
charset utf-8; #万国字符集
#access_log logs/host.access.log main;
location / {
root html; #Nginx默认网页设置
index index.html index.htm;
}
#访问位置为/status
location /status {
stub_status on; #打开状态统计功能
access_log off; #关闭此位置的日志记录
}
3.重启nginx服务,访问测试:
bash
nginx -t #检查nginx配置文件是否有错误
kill -1 11799
四、nginx授权访问控制
1. 生成用户密码认证文件
bash
yum install -y httpd-tools
htpasswd -c /usr/local/nginx/passwd.db lisi
chown nginx /usr/local/nginx/passwd.db
chmod 400 /usr/local/nginx/passwd.db
2. 修改主配置
bash
vim /usr/local/nginx/conf/nginx.conf
server {
location / {
......
##添加认证配置##
auth_basic "secret"; #设置密码提示框文字信息
auth_basic_user_file /usr/local/nginx/passwd.db; #密码认证模块的加载配置
}
}
3. 重启服务,进行访问测试
bash
nginx -t #检查nginx配置文件是否有错误
kill -1 11799
五、nginx客户端访问控制
设置方式类似于黑白名单
1. 设置前的访问,其他主机访问测试:
访问控制规则如下:
deny IP/IP 段:拒绝某个 IP 或 IP 段的客户端访问。
allow IP/IP 段:允许某个 IP 或 IP 段的客户端访问。
规则从上往下执行,如匹配则停止,不再往下匹配。
2. 修改主配置
bash
vim /usr/local/nginx/conf/nginx.conf
......
server {
location / {
......
##添加控制规则##
allow 192.168.136.100; #允许当前主机
allow 127.0.0.1; #允许自己
allow 192.168.136.1; #允许真机
allow 192.168.136.120; #允许访问的客户端 IP
deny all; #拒绝其它IP客户端访问
}
}
3. 重启服务,进行访问测试
bash
nginx -t #检查nginx配置文件是否有错误
kill -1 11799
六、nginx虚拟主机
6.1 基于域名的虚拟主机
1.为虚拟主机提供域名解析
bash
echo "192.168.136.100 www.cxk.com www.kun.com" >> /etc/hosts 添加到本机域名解析
2.为虚拟主机准备网页文档
bash
mkdir -p /var/www/html/cxk #分别创建两个不同域名的网页目录
mkdir -p /var/www/html/kun #分别创建两个不同域名的网页目录
echo "<h1>cxk hhh</h1>" > /var/www/html/cxk/index.html #为两个不同的域名默认首页网页添加内容
echo "<h1>kun hhh</h1>" > /var/www/html/kun/index.html #为两个不同的域名默认首页网页添加内容
3.修改Nginx的配置文件
bash
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.cxk.com;
charset utf-8;
access_log logs/www.cxk.access.log; #不同虚拟主机的域名访问日志
location / {
root /var/www/html/cxk; #默认网页
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 80;
server_name www.kun.com;
charset utf-8;
access_log logs/www.kun.access.log;
location / {
root /var/www/html/kun;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
4.重启服务,测试
bash
systemctl restart nginx
6.2 基于IP 的 Nginx 虚拟主机
1. 设置虚拟主机IP
bash
[root@localhost conf]#ifconfig ens33:0 192.168.136.200/24
[root@localhost conf]#ifconfig ens33:0
- 修改主配置文件
bash
vim nginx.conf
server {
listen 192.168.136.100:80;
server_name localhost;
charset utf-8;
access_log logs/www.cxk.access.log;
location / {
root /var/www/html/cxk;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 192.168.136.200:80;
server_name localhost;
charset utf-8;
access_log logs/www.kun.access.log;
location / {
root /var/www/html/kun;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
3. 重启服务,测试
6.3 基于端口的 Nginx 虚拟主机
1. 修改主配置文件
bash
vim nginx.conf
server {
listen 192.168.136.100:8080;
server_name localhost;
charset utf-8;
access_log logs/www.cxk.access.log;
location / {
root /var/www/html/cxk;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 192.168.136.200:8848;
server_name localhost;
charset utf-8;
access_log logs/www.kun.access.log;
location / {
root /var/www/html/kun;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}