This article is a later story of How to fly Wi-Fi through Proxy brilliantly --Qiita who won the battle with Proxy. The environment etc. are based on the above article, so please read this article after reading it.
This is because the game makes heavy use of ports other than well-known ports. In other words, if the game side is using TLS communication other than the well-known port, you can set it on the Squid side to enable normal communication.
/etc/squid/squid.conf
- acl SSL_ports port 443
+ acl SSL_ports port 443 4432
+ acl Safe_ports port 4432
Just add the ports you want to add to SSL_ports and Safe_ports.
Proxy server (Squid) settings that use SSL ports other than 443: https://minory.org/proxy-squid-403-error.html
Recommended Posts