I am running twisted.web.server on localhost at port 8001 and apache2 with mod_proxy. Apache is set to proxy according to the following config
http://localhost/jarvis ----> http://localhost:8001/
The httpd config for this rule is
ProxyPass /jarvis http://localhost:8001/
ProxyPassReverse /jarvis http://localhost:8001/
The twisted app's code fragment for server config is as follows:
if __name__ == '__main__':
root = Resource()
root.putChild("clientauth", boshProtocol())
logging.basicConfig()
factory = Site(root)
reactor.listenTCP(8001, factory)
reactor.run()
When I go to
http://localhost:8001/clientauth
it runs as expected. However when I use
http://localhost/jarvis/clientauth
It give the error - "No such child resource." As i understand - the request is correctly proxied to the twisted web server. But why is the child resource not identified?