码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx-基础

时间:2020-09-18 12:30:20      阅读:41      评论:0      收藏:0      [点我收藏+]

标签:comment   nginx 编译   软件版本   情况   安装   opp   you   search   tor   

HTTP:
http(超文本传输协议)是基于TCP/IP通信协议来传输数据。HTTP协议工作于客户端-服务端(CS)架构上。浏览器作为HTTP客户端通过URL向HTTP服务端即WEB服务器发送所有请求。
?
Web服务器有:Nginx、Apache、IIS服务器等。Web服务器根据收到的请求后,向客户端发送响应信息。HTTP默认端口为80,可以改为8080或其他端口。

HTTP请求方法及常见状态码:

GET:单纯获取数据(获取一个index.html页面)
POST:上传/创建文件(会产生新的数据)
PUT:保存数据(覆盖/更新文件、图片等,不会产生新的数据)
DELETE:删除
- 200 - 请求成功
- 301 - 资源(网页等)被永久转移到其它URL
- 404 - 请求的资源(网页等)不存在
- 500 - 内部服务器错误
?
Nginx:
Nginx* (engine x) 是一个高性能的 HTTP 和 反向代理 服务,也是一个IMAP/POP3/SMTP服务。因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。
?
Nginx是一款轻量级(对环境依赖小)的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,在高连接并发的情况下,Nginx是Apache服务器不错的替代品。
?
Nginx 是一个高性能的 Web 和反向代理服务器, 它具有有很多非常优越的特性:
?
单机环境下参考服务器配置。 并发连接数在7000+ -8000左右。 集群模式20000+
?
**作为 Web 服务器**:相比 Apache,Nginx 使用更少的资源,支持更多的并发连接,体现更高的效率,这点使 Nginx 尤其受到虚拟主机提供商的欢迎。能够支持高达 50,000 个并发连接数的响应。
?
**作为负载均衡服务器**:Nginx 既可以在内部直接支持 Rails 和 PHP,也可以支持作为 HTTP代理服务器 对外进行服务。Nginx 用 C 编写, 不论是系统资源开销还是 CPU 使用效率都比 Perlbal 要好的多。
?
**作为邮件代理服务器**: Nginx 同时也是一个非常优秀的邮件代理服务器(最早开发这个产品的目的之一也是作为邮件代理服务器),Last.fm 描述了成功并且美妙的使用经验。
?
**Nginx 安装非常的简单,配置文件 非常简洁(还能够支持perl语法),Bugs非常少的服务器**: Nginx 启动特别容易,并且几乎可以做到7*24不间断运行,即使运行数个月也不需要重新启动。你还能够在 不间断服务的情况下进行软件版本的升级。

 

IO多路复用
第一种方法就是最传统的多进程并发模型 (每进来一个新的I/O流会分配一个新的进程管理。)
第二种方法就是I/O多路复用 (单个线程,通过记录跟踪每个I/O流(sock)的状态,来同时管理多个I/O流 。)I/O multiplexing 这里面的 multiplexing 指的其实是在单个线程通过记录跟踪每一个Sock(I/O流)的状态来同时管理多个I/O流。发明它的原因,是尽量多的提高服务器的吞吐能力。在同一个线程里面, 通过拨开关的方式,来同时传输多个I/O流。
epoll:epoll 可以说是I/O 多路复用最新的一个实现,epoll 修复了poll 和select绝大部分问题, 比如:epoll 线程安全的。 epoll 告诉你具体哪个sock有数据,你不用自己去找了。

 

异步,非阻塞
1个master进程,2个work进程
?
    每进来一个request,会有一个worker进程去处理。但不是全程的处理,处理到什么程度呢?处理到可能发生阻塞的地方,比如向上游(后端)服务器转发request,并等待请求返回。那么,这个处理的worker不会这么一直等着,他会在发送完请求后,注册一个事件:“如果upstream返回了,告诉我一声,我再接着干”。于是他就休息去了。这就是异步。此时,如果再有request 进来,他就可以很快再按这种方式处理。这就是非阻塞和IO多路复用。而一旦上游服务器返回了,就会触发这个事件,worker才会来接手,这个request才会接着往下走。这就是异步回调。

 

nginx部署-Yum安装
访问nginx的官方网站:<http://www.nginx.org/>
Nginx版本类型
Mainline version:   主线版,即开发版
Stable version:       最新稳定版,生产环境上建议使用的版本
Legacy versions:   遗留的老版本的稳定版

Yum安装nginx

配置Yum源的官网:http://nginx.org/en/linux_packages.html

 sudo yum install yum-utils -y
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1
# sudo yum install nginx -y
# yum install -y nginx
# nginx -V   //格式化打印 -v 只看版本

关闭防火墙和selinux:

[root@nginx-server ~]# getenforce 
Enforcing
[root@nginx-server ~]# setenforce 0
[root@nginx-server ~]# systemctl stop firewalld
[root@nginx-server ~]# systemctl disable firewalld
[root@nginx-server ~]# systemctl start nginx
[root@nginx-server ~]# systemctl enable nginx   、启动及开机启动
浏览器输入ip访问:即可
nginx 编译安装与配置使用:
1、安装编译环境

yum -y install gcc gcc-c++

2、安装pcre软件包(使nginx支持http rewrite模块)

yum install -y pcre pcre-devel

3、安装openssl-devel(使nginx支持ssl)

yum install -y openssl openssl-devel

4、安装zlib

yum install -y zlib zlib-devel

5、创建用户nginx

useradd nginx

passwd nginx

6、安装nginx

[root@localhost ~]# wget http://nginx.org/download/nginx-1.16.0.tar.gz
[root@localhost ~]# tar xzf nginx-1.16.0.tar.gz -C /usr/local/
[root@localhost ~]# cd /usr/local/nginx-1.16.0/
[root@localhost nginx-1.16.0]# ./configure --prefix=/usr/local/nginx --group=nginx --user=nginx --sbin-path=/usr/local/nginx/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/tmp/nginx/client_body --http-proxy-temp-path=/tmp/nginx/proxy --http-fastcgi-temp-path=/tmp/nginx/fastcgi --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-pcre --with-http_realip_module --with-stream
[root@localhost nginx-1.16.0]# make && make install
Nginx 编译参数
# 查看 nginx 安装的模块
[root@localhost ~]#/usr/local/nginx/sbin/nginx -V
# 模块参数具体功能
--with-cc-opt=‘-g -O2 -fPIE -fstack-protector   //设置额外的参数将被添加到CFLAGS变量。(FreeBSD或者ubuntu使用)
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2
--with-ld-opt=‘-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now‘
?
--prefix=/usr/local/nginx                       //指向安装目录
--conf-path=/etc/nginx/nginx.conf               //指定配置文件
--http-log-path=/var/log/nginx/access.log       //指定访问日志
--error-log-path=/var/log/nginx/error.log       //指定错误日志
--lock-path=/var/lock/nginx.lock                 //指定lock文件
--pid-path=/run/nginx.pid                       //指定pid文件
?
--http-client-body-temp-path=/var/lib/nginx/body   //设定http客户端请求临时文件路径
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi     //设定http fastcgi临时文件路径
--http-proxy-temp-path=/var/lib/nginx/proxy         //设定http代理临时文件路径
--http-scgi-temp-path=/var/lib/nginx/scgi           //设定http scgi临时文件路径
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi         //设定http uwsgi临时文件路径
?
--with-debug                                       //启用debug日志
--with-pcre-jit                                     //编译PCRE包含“just-in-time compilation”
--with-ipv6                                         //启用ipv6支持
--with-http_ssl_module                             //启用ssl支持
--with-http_stub_status_module                     //获取nginx自上次启动以来的状态
--with-http_realip_module                 //允许从请求标头更改客户端的IP地址值,默认为关
--with-http_auth_request_module           //实现基于一个子请求的结果的客户端授权。如果该子请求返回的2xx响应代码,所述接入是允许的。如果它返回401或403中,访问被拒绝与相应的错误代码。由子请求返回的任何其他响应代码被认为是一个错误。
--with-http_addition_module               //作为一个输出过滤器,支持不完全缓冲,分部分响应请求
--with-http_dav_module                   //增加PUT,DELETE,MKCOL:创建集合,COPY和MOVE方法 默认关闭,需编译开启
--with-http_geoip_module                 //使用预编译的MaxMind数据库解析客户端IP地址,得到变量值
--with-http_gunzip_module                 //它为不支持“gzip”编码方法的客户端解压具有“Content-Encoding: gzip”头的响应。
--with-http_gzip_static_module           //在线实时压缩输出数据流
--with-http_image_filter_module           //传输JPEG/GIF/PNG 图片的一个过滤器)(默认为不启用。gd库要用到)
--with-http_spdy_module                   //SPDY可以缩短网页的加载时间
--with-http_sub_module                   //允许用一些其他文本替换nginx响应中的一些文本
--with-http_xslt_module                   //过滤转换XML请求
--with-mail                               //启用POP3/IMAP4/SMTP代理模块支持
--with-mail_ssl_module                   //启用ngx_mail_ssl_module支持启用外部模块支持
修改配置文件/etc/nginx/nginx.conf:
# 全局参数设置
user nginx;  #指定用户
worker_processes  4;          #设置nginx启动进程的数量,一般设置成与逻辑cpu数量相同
error_log logs/error.log;    #指定错误日志
worker_rlimit_nofile 102400;  #设置一个nginx进程能打开的最大文件数
pid       /var/run/nginx.pid;
events {
  worker_connections  1024; #设置一个进程的最大并发连接数
}
?
# http 服务相关设置
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 /var/log/nginx/access.log main;    #设置访问日志的位置和格式
  sendfile         on; #是否调用sendfile函数输出文件,一般设置为on,若nginx是用来进行磁盘IO负载应用时,可以设置为off,降低系统负载
  gzip             on;      #是否开启gzip压缩,将注释去掉开启
  keepalive_timeout  65;     #设置长连接的超时时间
# 虚拟服务器的相关设置
include /etc/nginx/conf.d/*.conf  #子配置文件路径
  server {
      listen      80;        #设置监听的端口
      server_name localhost;        #设置绑定的主机名、域名或ip地址
#       charset koi8-r;       # 设置编码字符
charset utf-8;
      location / {
          root /var/www/nginx;           #设置服务器默认网站的根目录位置,需要手动创建
          index index.html index.htm;    #设置默认打开的文档
          }
      error_page  500 502 503 504 /50x.html; #设置错误信息返回页面
      location = /50x.html {
          root html;        #这里的绝对位置是/usr/local/nginx/html
      }
  }
}
nginx.conf的组成:nginx.conf一共由三部分组成,分别为:全局块、events块、http块。在http块中又包含http全局块、多个server块。每个server块中又包含server全局块以及多个location块。在统一配置块中嵌套的配置快,各个之间不存在次序关系。
检测nginx配置文件是否正确及启动
# /usr/local/nginx/sbin/nginx -t
# mkdir -p /tmp/nginx
# mkdir /usr/local/nginx/logs
[root@localhost ~]# /usr/local/nginx/sbin/nginx
通过 nginx 命令控制 nginx 服务
nginx -c /path/nginx.conf        # 以特定目录下的配置文件启动nginx:
nginx -s reload           # 修改配置后重新加载生效
nginx -s stop # 快速停止nginx
nginx -s quit # 完整有序的停止nginx
nginx -t   # 测试当前配置文件是否正确
nginx -t -c /path/to/nginx.conf  # 测试特定的nginx配置文件是否正确

3、使用 limit_rate 限制客户端传输数据的速度

1、编辑/etc/nginx/nginx.conf

location / {
          root   /var/www/nginx/;
          index index.html index.htm;
          limit_rate 2k;  #对每个连接的限速为2k/s
      }

修改完配置文件,需要重启服务(重新加载服务)

注意要点:

  • 配置文件中的每个语句要以 ; 结尾

1、 基于域名的虚拟主机

1、配置通过域名区分的虚拟机

[root@localhost ~]# cat /etc/nginx/nginx.conf
worker_processes  4;
?
#error_log logs/error.log;
worker_rlimit_nofile 102400;
?
?
events {
  worker_connections  1024;
}
?
?
http {
  include       mime.types;
  default_type application/octet-stream;
   
  server {
      listen       80;
      server_name web.testpm.com;
      location / {
          root   /var/www/nginx/;
          index index.html index.htm;
          limit_rate 2k;
      }
      }
   
  server {
      listen       80;
      server_name web.1000phone.com;
      location / {
          root   /1000phone/html;
          index index.html index.htm;
      }
      }
}
?
[root@localhost nginx]# cat /var/www/nginx/index.html
hello youngfit
?
[root@localhost nginx]# cat /1000phone/html/index.html
this is my 1000phone

2、为域名为 web.1000phone.com 的虚拟机,创建 index 文件

[root@localhost ~]# mkdir -p /1000phone/html
[root@localhost ~]# vim /1000phone/html/index.html
this is my 1000phone

3、重新加载配置文件

# 如果编译安装的执行
[root@nginx]# /usr/local/nginx/sbin/nginx -s reload
# 如果 yum 安装的执行
[root@nginx]# nginx -s reload

 

2、 基于ip的虚拟主机
[root@localhost ~]# ip a 
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1
  link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  inet 127.0.0.1/8 scope host lo
      valid_lft forever preferred_lft forever
  inet6 ::1/128 scope host
      valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
  link/ether 00:0c:29:17:f1:af brd ff:ff:ff:ff:ff:ff
  inet 10.0.105.199/24 brd 10.0.105.255 scope global dynamic ens33
      valid_lft 81438sec preferred_lft 81438sec
  inet6 fe80::9d26:f3f0:db9c:c9be/64 scope link
      valid_lft forever preferred_lft forever
[root@localhost ~]# ifconfig ens33:1 10.0.105.201/24
[root@localhost ~]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
      inet 10.0.105.199 netmask 255.255.255.0 broadcast 10.0.105.255
      inet6 fe80::9d26:f3f0:db9c:c9be prefixlen 64 scopeid 0x20<link>
      ether 00:0c:29:17:f1:af txqueuelen 1000 (Ethernet)
      RX packets 9844 bytes 1052722 (1.0 MiB)
      RX errors 0 dropped 0 overruns 0 frame 0
      TX packets 5567 bytes 886269 (865.4 KiB)
      TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
?
ens33:1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
      inet 10.0.105.201 netmask 255.255.255.0 broadcast 10.0.105.255
      ether 00:0c:29:17:f1:af txqueuelen 1000 (Ethernet)
?
2、配置通过ip区分的虚拟机
[root@localhost ~]# cat /etc/nginx/nginx.conf
user root;
worker_processes  4;
?
#error_log logs/error.log;
worker_rlimit_nofile 102400;
?
?
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"‘;
?
  server {
      listen       10.0.105.199:80;
      server_name web.testpm.com;
      location / {
          root   /var/www/nginx/;
          index index.html index.htm;
          limit_rate 2k;
      }
       
    server {
      listen       10.0.105.201:80;
      server_name web.testpm.com;
      location / {
          root   /1000phone/html/;
          index index.html index.htm;
      }
      }
}
3、重新加载配置文件
[root@localhost ~]# /usr/local/nginx/sbin/nginx -s reload
4、 测试访问
浏览器输入:http://10.0.105.199
浏览器输入:http://10.0.105.201
5、补充
-- 删除绑定的临时ip
[root@localhost ~]# ifconfig ens33:1 10.0.105.201/24 down
重启一下nginx
[root@localhost ~]# systemctl restart nginx

 

3、 基于端口的虚拟主机
[root@localhost ~]# cat /etc/nginx/nginx.conf
user  root;
worker_processes  4;

worker_rlimit_nofile 102400;


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"‘;


    sendfile        on;

    keepalive_timeout  65;


    server {
        listen       80;
        server_name  web.testpm.com;
        location / {
            root   /var/www/nginx/;
            index  index.html index.htm;
            limit_rate	2k;
        }
        
    
     server {
        listen       8080;
        server_name  web.1000phone.com;
        location / {
            root   /1000phone/html/;
            index  index.html index.htm;
        	}
        }
}
重新加载配置文件:
[root@localhost ~]# /usr/local/nginx/sbin/nginx -s reload
测试访问:
浏览器输入:http://web.testpm.com/
浏览器输入:http://web.1000phone.com:8080

 

Nginx-基础

标签:comment   nginx 编译   软件版本   情况   安装   opp   you   search   tor   

原文地址:https://www.cnblogs.com/james-23/p/13689857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!