# example Apache2 configuration for HelpIM
# Adjust paths according to your setup.
# This can be included in the virtual host configuration with the include
# directive: Include /path/to/this/file
ProxyRequests Off
ProxyPass /http-bind/ http://localhost:5280/http-bind/
ProxyPassReverse /http-bind/ http://localhost:5280/http-bind/
# make sure utf-8 is the default (if it isn't already)
AddDefaultCharset utf-8
# Directory for the static files
Alias /chat/chat/htdocs/ /usr/local/share/HelpIM/htdocs/
Options None
AllowOverride None
Order allow,deny
Allow from all
# Webapp
# Note: do not use a trailing slash here, seems to be a bug in mod_wsgi!
WSGIScriptAlias /chat/chat /usr/local/lib/python2.5/site-packages/HelpIM/web/HelpIM.wsgi
Order allow,deny
Allow from all
# Use one interpreter for all of HelPIM
WSGIApplicationGroup HelpIM3