Mercurial > hg > tomcat-userconfig
comparison dist/README @ 17:012d66bbc61f
README. Set default homeBase value.
author | Mikhail Kryshen <mikhail@kryshen.net> |
---|---|
date | Tue, 03 Nov 2009 03:32:45 +0300 (2009-11-03) |
parents | |
children | 1915c9c69129 |
comparison
equal
deleted
inserted
replaced
16:283527b97f1e | 17:012d66bbc61f |
---|---|
1 = Description = | |
2 | |
3 Tomcat event listener to automatically deploy update and undeploy | |
4 applications from user home directories. | |
5 | |
6 This is a rewrite of org.apache.catalina.startup.UserConfig listener | |
7 included in Tomcat which adds the following features: | |
8 - multiple web applications for each user, | |
9 - automatic application deployment, | |
10 - on UNIX access remote user database using getent command. | |
11 | |
12 = Installation = | |
13 | |
14 Copy userconfig.jar to Tomcat lib directory. Add Listener to the Host | |
15 element in the Tomcat configuration file (server.xml). | |
16 | |
17 Listener that uses passwd database to list users: | |
18 <Listener className="kryshen.catalina.startup.PasswdUserConfig"/> | |
19 | |
20 Listener that considers all home directories in the specified base | |
21 directory: | |
22 <Listener className="kryshen.catalina.startup.HomesUserConfig"/> | |
23 | |
24 = Listener properties = | |
25 | |
26 Common: | |
27 | |
28 directoryName - base directory for web applications inside user's | |
29 home directory. Default: "public_webapps". | |
30 | |
31 appsPerUser - maximum number of application each user is allowed to | |
32 deploy. Default: -1 (unlimited). | |
33 | |
34 PasswdUserConfig: | |
35 | |
36 passwd - path to local passwd file. Default: "/etc/passwd". | |
37 | |
38 getent - getent command. Local passwd is used if this is not set. | |
39 Default: not set (null). | |
40 | |
41 HomesUserConfig | |
42 | |
43 homeBase - base directory for user homes. Default: "/home". |