]> err.no Git - scalable-opengroupware.org/blob - SOGo/Main/README
made sogod a tool, places bundles into Library/SOGo-0.9
[scalable-opengroupware.org] / SOGo / Main / README
1 SOGo
2 ====
3
4 Master Daemon, loads the functionality from product bundles in Library/SOGo.
5
6 Setup
7 =====
8
9   Defaults write sogod NGBundlePath '"$HOME/Library/SOGo"'
10   => otherwise some bundles will clash with "fat" OGo
11   => the UIx .wox driver must be found
12
13 Defaults
14 ========
15
16   SOGoCrashOnSessionCreate - bool - crash the server if a session is created
17   => useful for debugging
18
19 What it does
20 ============
21 - provides locale support
22 - preloads the SOGo products (SOGoProductLoader)
23 - provides the root object (the application object with user lookup)
24 - sets the authenticator
25 - does some process limits and restart support
26
27 Apache Setup
28 ============
29
30   AliasMatch /SOGoHH/so/ControlPanel/Products/(.*)/Resources/(.*) \
31              /home/helge/GNUstep/Library/SOGo-0.9/$1.SOGo/Resources/$2
32
33   <LocationMatch "^/SOGoHH*">
34     AuthName "Agenor LDAP"
35     AuthType Basic
36     AuthLDAPEnabled on
37     AuthLDAPUrl ldap://agenor-ldap:389/ou=organisation,dc=equipement,dc=gouv,dc=fr??sub?(&(objectClass=person)(uid=*))
38     require valid-user
39
40     SetHandler ngobjweb-adaptor
41     SetAppPort 9000
42   </LocationMatch>
43
44   <LocationMatch "^/SOGoHH/so/ControlPanel/Products/.*UI/Resources/.*(\.png$|\.gif$|\.css$|\.js$)">
45     SetHandler default-handler
46   </LocationMatch>