root/HelpIM3_chi/apache2_conf.example

Revision 598, 1.0 kB (checked in by winfried, 3 years ago)

- fixing several bugs in the scripts
- finishing documentation as far as is possible right now

Line 
1# example Apache2 configuration for HelpIM
2# Adjust paths according to your setup.
3# This can be included in the virtual host configuration with the include
4# directive: Include /path/to/this/file
5
6ProxyRequests Off
7ProxyPass /http-bind/ http://localhost:5280/http-bind/
8ProxyPassReverse /http-bind/ http://localhost:5280/http-bind/
9
10# make sure utf-8 is the default (if it isn't already)
11<Location /chat/chat>
12  AddDefaultCharset utf-8
13</Location>
14
15# Directory for the static files
16Alias /chat/chat/htdocs/ /usr/local/share/HelpIM/htdocs/
17<Directory /usr/local/share/HelpIM/htdocs/>
18  Options None
19  AllowOverride None
20  Order allow,deny
21  Allow from all
22</Directory>
23
24# Webapp
25# Note: do not use a trailing slash here, seems to be a bug in mod_wsgi!
26WSGIScriptAlias /chat/chat /usr/local/lib/python2.5/site-packages/HelpIM/web/HelpIM.wsgi
27<Directory /usr/local/lib/python2.5/site-packages/HelpIM/web/>
28  Order allow,deny
29  Allow from all
30  # Use one interpreter for all of HelPIM
31  WSGIApplicationGroup HelpIM3
32</Directory>
Note: See TracBrowser for help on using the browser.