5 lines
163 B
Python
5 lines
163 B
Python
def request(context, flow):
|
|
flow.request.headers["x-requests-proxy"] = "http"
|
|
|
|
def response(context, flow):
|
|
flow.response.headers[b"x-requests-proxied"] = "http" |