中间件 Nginx

                         只简述自己的理解及使用,详细介绍可以自行百度,有细而全的中文文档<(^.^)>,图片来源于百度

                                 

1.Nginx干嘛用?

   可以做静态服务器,可以做代理服务器

2.什么是代理服务器

    我的理解就是一个用来做请求转发。

    正向代理:

       比如客户端要直接访问一个国外的网站是访问不到的,但可以通访问一台其他服务器,在有这台服务器访问国外的网站,

       然后在由这台中间服务器返回到客户端,这就是正向代理,国外服务器并不知道客户端地址,只知道访问的中间服务器,

       感觉不到客户端的存在,如:翻墙软件

   反向代理:

      客户端访问应用服务器,不是直接访问应用服务器地址,而是先访问一台代理服务器,代理服务器在将请求转发到对应的应        用服务器,应用服务器处理完毕后,再将结果返回代理服务器,再由代理服务器返回到客户端。对于客户端,其实并不知道        应用服务器的真实信息。

实际生产环境是两种方式并存,我理解的正向代理和反向代理就是你从什么角度来看

    

好处:

      1.开源免费(不花钱,硬件太贵,如H5,一般公司买不起,就跟oracle和mysql似的)

      2.支持高并发,心跳检测,转发策略,动静分离,高性能,稳定性好。

      3.使用方便,基本只需要修改nginx.conf 配置就可以。

3.nginx使用:

相关操作命令,进入nginx目录下sbin目录下

  • 启动 :./nginx -s start
  • 停止 : ./nginx -s stop
  • 重新加载:./nginx -s reload

启动后查看进程如下:

4.如何配置nginx

  配置nginx 主要是修改nginx.conf文件,主要分几块:

  • 没有被{}包裹的为全局配置模块
  • event{}:连接配置模块
  • http{}:http请求核心模块 (主要修改模块)
  • server{}:配置虚拟主机 地址,监听端口号
  • location{}:配置url匹配策略
#user  nobody;

#开启进程数 <=CPU数 
worker_processes  1;

#错误日志保存位置
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#进程号保存文件
#pid        logs/nginx.pid;

#每个进程最大连接数(最大连接=连接数x进程数)每个worker允许同时产生多少个链接,默认1024
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"';

    #请求日志保存位置
    #access_log  logs/access.log  main;
    
    #打开发送文件
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    #连接超时时间
    keepalive_timeout  65;

    #打开gzip压缩
    #gzip  on;
    
    #设定请求缓冲
    #client_header_buffer_size 1k;
    #large_client_header_buffers 4 4k;
    
    #设定负载均衡的服务器列表
    #upstream myproject {
        #weigth参数表示权值,权值越高被分配到的几率越大
        #max_fails 当有#max_fails个请求失败,就表示后端的服务器不可用,默认为1,将其设置为0可以关闭检查
        #fail_timeout 在以后的#fail_timeout时间内nginx不会再把请求发往已检查出标记为不可用的服务器
    #}
    
    #webapp
    #upstream myapp {   
    # server 192.168.122.133:8080 weight=1 max_fails=2 fail_timeout=30s;   
    # server 192.168.122.134:8080 weight=1 max_fails=2 fail_timeout=30s;   
    #} 

    #配置虚拟主机,基于域名、ip和端口
    server {
        #监听端口
        listen       80;
        #监听域名
        server_name  localhost;

        #charset koi8-r;
        
        #nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式)
        #access_log  logs/host.access.log  main;

        #返回的相应文件地址
        location / {
            #设置客户端真实ip地址
            #proxy_set_header X-real-ip $remote_addr;       
            #负载均衡反向代理
            #proxy_pass http://myapp;
            
            #返回根路径地址(相对路径:相对于/usr/local/nginx/)
            root   html;
            #默认访问文件
            index  index.html index.htm;
        }

        #配置反向代理tomcat服务器:拦截.jsp结尾的请求转向到tomcat
        #location ~ \.jsp$ {
        #    proxy_pass http://192.168.122.133:8080;
        #}      
        
        #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;
        #}
    }
    
    #虚拟主机配置:
    server {
        listen 1234;
        server_name wolfcode.cn;
        location / {
        #正则表达式匹配uri方式:在/usr/local/nginx/wolfcode.cn下 建立一个test123.html 然后使用正则匹配
        #location ~ test {
            ## 重写语法:if return (条件 = ~ ~*)
            #if ($remote_addr = 192.168.122.1) {
            #       return 401;
            #}      
            
            #if ($http_user_agent ~* firefox) {
            #      rewrite ^.*$ /firefox.html;
            #      break;
            #}          
                        
            root wolfcode.cn;
            index index.html;
        }
        
        #location /goods {
        #       rewrite "goods-(\d{1,5})\.html" /goods-ctrl.html;
        #       root wolfcode.cn;
        #       index index.html;
        #}
        
        #配置访问日志
        access_log logs/wolfcode.cn.access.log main;
    }
    


    # 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;
    #    }
    #}

}
发布了38 篇原创文章 · 获赞 1 · 访问量 1051

猜你喜欢

转载自blog.csdn.net/yu13843271857/article/details/101022955
今日推荐