我在 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 负载均衡器或反向代理