nginx访问另一台服务器上的文件

  • A服务器:前端服务器(开放外网)

  • B服务器:服务端服务器(未开发外网)

  • 需求:A服务器访问B服务器的文件

#给出的file都没有匹配到,则重新请求最后一个参数给定的uri,就是新的location匹配
location ^~ /files/{
try_files $uri @new_uploads;
}
location @new_uploads{
proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://B服务器内网IP:9001;
}
  • B服务器的配置:

server {
        listen       9001;
        server_name  localhost;
        location ^~ /files/{
            alias  /home/file/;
            #autoindex on;
            index  index.html index.htm;
        }
     }

参考:

https://blog.csdn.net/Answer0902/article/details/122996146

你可能感兴趣的:(服务器,nginx,运维)