class documentation

class ReverseProxyResource(Resource): (source)

View In Hierarchy

Resource that renders the results gotten from another server

Put this resource in the tree to cause everything below it to be relayed to a different server.

Method __init__
Method get​Child Create and return a proxy resource with the same proxy configuration as this one, except that its path also contains the segment given by path at the end.
Method render Render a request by forwarding it to the proxied server.
Instance Variable host Undocumented
Instance Variable path Undocumented
Instance Variable port Undocumented
Instance Variable proxy​Client​Factory​Class a proxy client factory class, used to create new connections.
Instance Variable reactor the reactor used to create connections.

Inherited from Resource:

Method del​Entity Undocumented
Method get​Child​For​Request Undocumented
Method get​Child​With​Default Retrieve a static or dynamically generated child resource from me.
Method get​Dynamic​Entity Undocumented
Method get​Static​Entity Undocumented
Method list​Dynamic​Entities Undocumented
Method list​Dynamic​Names Undocumented
Method list​Entities Undocumented
Method list​Names Undocumented
Method list​Static​Entities Undocumented
Method list​Static​Names Undocumented
Method put​Child Register a static child.
Method really​Put​Entity Undocumented
Method render_​HEAD Default handling of HEAD method.
Class Variable is​Leaf Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
Class Variable server Undocumented
Instance Variable children Undocumented
def __init__(self, host, port, path, reactor=reactor): (source)
Parameters
host:strthe host of the web server to proxy.
port:portthe port of the web server to proxy.
path:bytesthe base path to fetch data from. Note that you shouldn't put any trailing slashes in it, it will be added automatically in request. For example, if you put /foo, a request on /bar will be proxied to /foo/bar. Any required encoding of special characters (such as " " or "/") should have been done already.
reactorUndocumented
def getChild(self, path, request): (source)
Create and return a proxy resource with the same proxy configuration as this one, except that its path also contains the segment given by path at the end.
def render(self, request): (source)
Render a request by forwarding it to the proxied server.
host = (source)

Undocumented

path = (source)

Undocumented

port = (source)

Undocumented

proxyClientFactoryClass: ClientFactory = (source)
a proxy client factory class, used to create new connections.
the reactor used to create connections.