How can i proxy Riot Games services? #6788
-
How can i configure routing that way so it proxies only Riot Games and nothing else?
but it didn't help much. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The routing rules require the following adjustments: {
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"inboundTag": [
"api"
],
"outboundTag": "api"
},
{
"type": "field",
"outboundTag": "proxy",
"domain": [
"lol.secure.dyn.riotcdn.net",
"bacon.secure.dyn.riotcdn.net",
"valorant.secure.dyn.riotcdn.net",
"riot-client.secure.dyn.riotcdn.net",
"lolstatic-a.akamaihd.net"
]
},
{
"type": "field",
"outboundTag": "proxy",
"domain": [
"geosite:riot"
]
},
{
"type": "field",
"port": "0-65535",
"outboundTag": "direct"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
The routing rules require the following adjustments:
Change the “match all domain names” in the direct connection rule to “match all ports” to ensure that both IPs and domain names can connect directly.
Move the direct connection rule to the bottom to prioritize matching proxy rules, preventing domain names that require a proxy from being directly connected.