[Pythonmac-SIG] Testing sqlite3 on python2.5 More

Samuel M. Smith smithsm at samuelsmith.org
Sat Mar 3 01:30:39 CET 2007


>
> Got hung up on the sqlite bugs so haven't had time to try the  
> apache2 mod_python way of running roundup nor
> your suggestion of using a reverse proxy instead of mod_python  
> ("yikes" never heard of it before, apache2 docs confusing me).
>

Found an example for doing a reverse proxy for roundup with apache.  
Had to modify it for apache2 but
the simple example worked yeah!

add to /opt/local/apache2/conf/httpd.conf

#added for roundup reverse proxy
ProxyRequests Off

<IfModule proxy_module>
    #proxy thru one issue tracker
    ProxyPass /adeptsupport/ http://127.0.0.1:8917/adeptsupport/
    #proxy all issues
    #ProxyPass /roundup/ http://localhost:8917/
</IfModule>

sudo /opt/local/apache2/bin/apachectl restart




More information about the Pythonmac-SIG mailing list