nginx反向代理

1.nginx反向代理

第一步:部署nginx(网上参考)

第二步:配置nginx配置文件,nginx.conf

主要需要配置

    location / {
             index index.jsp;
            proxy_pass http://zp_server1;
        }

以及

    upstream zp_server1{
        server 127.0.0.1:8080;
    }

 

详细配置如下:
worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    
    upstream zp_server1{
        server 127.0.0.1:8080;
    }

    server {
        listen       81;
        server_name  localhost;
        location / {
             index index.jsp;
            proxy_pass http://zp_server1;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

}

第三步:

界面直接访问   http://localhost:81/test/  就可以反代理到 http://localhost:8080/test/ url了

2.nginx实现负载均衡

2.nginx防盗链

3.nginx搭建https服务器

你可能感兴趣的:(java技术,nginx)