nginx知识点总结

高性能http web服务器和反向代理器,也可以做邮件代理服务器。
特点:占用内存少,并发能力强

1. 概念

  1. 正向代理:代表的是客户端
  2. 反向代理:代表的是服务器,用户不知道具体访问的是哪个服务器

2. 主要应用

  • 静态网站部署
  • 负载均衡
  • 静态代理
  • 动静分离
  • 虚拟主机

3. 配置解读

#user  nobody;
#配置工作进程数目,通常等于CPU数量或2倍于cpu数量
worker_processes  1;

#配置全局错误日志类型 debug/info/notice/warn/error/crit,默认是error
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024; #配置每个work进程的连接数上线
}


http {
    #配置nginx支持哪些多媒体类型
    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日志及存放路径,并使用上面定义的main日志格式
    #access_log  logs/access.log  main;

    sendfile        on; #开启高效文件传输模式
    #tcp_nopush     on; #防止网络阻塞

    #keepalive_timeout  0;
    keepalive_timeout  65; #长链接超时时间,s

    #gzip  on; #开启gzip压缩输出

    server {
        #可以有多个server,但是每个server的端口号和域名不能完全相同
        listen       80;
        server_name  localhost;

        #charset koi8-r; #配置字符集

        #access_log  logs/host.access.log  main; #配置虚拟主机的访问日志

        #路由匹配地址栏路径
        location / {
            root   html; #默认为nginx安装目录下的html目录
            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;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

4. nginx负载均衡

  1. 配置
    在http里增加upstream配置,添加weight可以配置权重
 upstream www.appname.com {
        server 192.168.15.11:xx
        server 192.168.15.56:xx
    }

在location添加配置

 location / {
            proxy_pass http://www.appname.com;
        }

2.策略

  • 轮询(默认)。按照url的hash结果分配请求,是的每个url定向到一个后端服务器,后端服务器故障,将自动剔除。这里的轮询并不是每个请求轮流分配到不同的后端服务器。
  • 权重。按照一定比例分发到不同服务器后端
  • ip_hash。每个请求按访问ip的hash值分配,这样每个客户端会固定访问一个后端服务器,会解决会话session丢失问题。
  • 最少链接。web请求会被转发到连接数最少的服务器上。

5. nginx静态代理实现

  1. 在location中配置静态资源后缀
 location ~.*\(js|css|jpg)${
            root /opt/static;
        }
  1. 在location中配置静态资源所在目录实现
 location ~.*/(js|css|jpg){
            root /opt/static;
        }

你可能感兴趣的:(nginx知识点总结)