from mitmproxy import http

def request(flow: http.HTTPFlow) -> None:
    if "steamcommunity.com" in flow.request.pretty_host:
        flow.request.host = "23.88.122.57"
        flow.request.port = 8021
        flow.request.scheme = 'http'
