
I'm trying to configure twisted-web to work with apache. Could you please provide me some study materials like useful web links? Thanks and regards, ==================================== S S Islam Shahid System Administrator Millennium Information Solution Ltd.

You might want to try the following directive in the apache configuration. This assumes that twisted is running on the same machine on port 8765. Also make sure the libproxy.so module is loaded. <VirtualHost *> ServerAdmin you@wherever.com ServerName virtualhostname.domain.com ProxyVia On ProxyPass / http://127.0.0.1:8765/ ProxyPassReverse / http://127.0.0.1:8765/ </VirtualHost> The result is that all requests that are made via virtualhostname.domain.com are forwarded to the twisted server. #noema

S S Islam Shahid wrote:
I'm trying to configure twisted-web to work with apache. Could you please provide me some study materials like useful web links?
Thanks and regards,
==================================== S S Islam Shahid System Administrator Millennium Information Solution Ltd.
This worked for me: http://divmod.org/users/wiki.twistd/nevow/moin.cgi/ApacheSetup
participants (3)
-
Jason Mobarak
-
noema
-
S S Islam Shahid