I was looking at the documentation at Proxy Setup - Cfx.re Docs and also the community guide at FXServer Reverse Proxy · GitHub
But, it turns out that this is only for a single proxy. In addition, said proxy becomes the main one, I can understand that in this case it is to avoid DDoS
I see it as important, but I would like to know if it is possible to create multiple proxies that address the same main IP
We are talking about 4 proxies in different parts of the world.
Example:
Proxy1 → ip original-ip*
Proxy2 → ip original-ip*
Proxy3 → ip original-ip*
Proxy4 → ip original-ip*
Proxy5 → ip original-ip*
Obviously each proxy would be in different countries, it is so that my community has fast ping.
I try with this:
stream {
upstream backend {
server 162.255.117.152:30120;
}
server {
listen 30120;
proxy_pass backend;
}
server {
listen 30120 udp reuseport;
proxy_pass backend;
}
}
But it stays connecting.