cpanel apache 负载均衡器或反向代理?

问题描述 投票:0回答:0

我在 Linux 服务器和 nginx web 服务器上有这样的配置:

stream {
         upstream backend {
                 server 85.15.1.10:443;
         }

         server {
                 listen 443;
                 proxy_pass backend;
         }
}

每一个来到nginx地址的请求都会发送到地址85.15.1.10 现在我想用 cpanel 主机来做这个,关键是不能访问 apache 系统文件,只能编辑 htaccess,有没有办法做 nginx 在 apache 中做的事情?

cpanel apache 负载均衡器或反向代理

apache proxy cpanel reverse
© www.soinside.com 2019 - 2024. All rights reserved.