Ngnix如何做反向代理

我们访问网站的时候,可以直接访问服务器,这种情况只限于只有一台服务器的时候,直接一般都是通过代理访问的,代理分为正向代理和反向代理。

正向代理:

正向代理一般而言工作在客户端,通常我们在浏览器设置代理,用户请求需要通过代理服务器访问目标网站,代理服务器收到目标网站响应后返回给浏览器客户端。
浏览器的代理设置像下面这样:


image.png

反向代理:

ngnix是一款非常厉害的Web服务器,可以用来做反向代理,或者叫反向路由。请求发送到代理服务器(Nginx),由反向代理服务器选择原始服务器提供服务获取响应结果,然后返回给客户端浏览器。

和正向代理不同,反向代理不需要再浏览器做任何配置,一种经典的服务器模式就是Ngnix+Tomcat,而Tomcat部署所在的服务器是不可见的。典型的访问过程如下,这里Nginx和Tomcat被视为服务端:


image.png

如何部署反向代理:

这里首先要看一下Nginx的配置文件(具体位置在conf/nginx.conf),按大块划分可以分为全局配置,events配置和http配置,如下所示:

#user  nobody;
worker_processes  1;

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


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  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   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;
    #    }
    #}

}

我们这里需要关注的的是http配置中的location部分,这里修改location部分为:

location / {
            proxy_pass  http://127.0.0.1:8080
            #root   html;
            #index  index.html index.htm;
        }

修改完成后重新加载配置文件,运行./nginx -s reload命令即可使得修改生效。

你可能感兴趣的:(Ngnix如何做反向代理)