source: gs3-extensions/webswing/trunk/web/etc/webswing.config.in@ 37332

Last change on this file since 37332 was 37332, checked in by davidb, 14 months ago

Improvements to configuring and installing. Now controling the values of the libary_url and ws: urls via properties set in the top-level build.xml

File size: 2.2 KB
Line 
1{
2 "/" : {
3 "path" : "/",
4 "security" : {
5 "module" : "EMBEDED",
6 "config" : {
7 "users" : [ {
8 "username" : "webswing-admin",
9 "password" : "greenstone3",
10 "roles" : [ "admin" ]
11 }, {
12 "username" : "webswing-support",
13 "password" : "greenstone3",
14 "roles" : [ "support" ]
15 }, {
16 "username" : "gli",
17 "password" : "greenstone3"
18 } ]
19 },
20 "classPath" : [ ]
21 },
22 "langFolder" : "${webswing.configDir}/lang",
23 "homeDir" : "${user.dir}",
24 "allowedCorsOrigins" : [ "*" ],
25 "adminConsoleUrl" : "http://localhost:8383/webswing-server/admin"
26 },
27 "/gli" : {
28 "path" : "/gli",
29 "security" : {
30 "module" : "NONE",
31 "config" : { },
32 "classPath" : [ ]
33 },
34 "icon" : "classes/images/gatherer.png",
35 "webFolder" : "",
36 "swingConfig" : {
37 "jreExecutable" : "${java.home}/bin/java",
38 "javaVersion" : "${java.version}",
39 "vmArgs" : "",
40 "classPathEntries" : [ "*.jar", "lib/*.jar" ],
41 "theme" : "Murrine",
42 "fontConfig" : {
43 "dialog" : "${webswing.configDir}/fonts/Roboto-Regular.ttf",
44 "dialoginput" : "${webswing.configDir}/fonts/RobotoMono-Regular.ttf",
45 "serif" : "${webswing.configDir}/fonts/RobotoSlab-Regular.ttf"
46 },
47 "swingSessionTimeout" : 300,
48 "antiAliasText" : true,
49 "isolatedFs" : true,
50 "debug" : true,
51 "directdraw" : true,
52 "allowDelete" : true,
53 "allowDownload" : true,
54 "allowAutoDownload" : true,
55 "allowUpload" : true,
56 "allowJsLink" : true,
57 "allowLocalClipboard" : true,
58 "launcherType" : "Desktop",
59 "launcherConfig" : {
60 "mainClass" : "org.greenstone.gatherer.GathererProg",
61 "args": "-gsdl @gsdl3srchomeunix@/gs2build -gsdlos @gsdlos@ -gsdl3 @gsdl3srchomeunix@/web -gsdl3src @gsdl3srchomeunix@ -library_url @external-servleturl@ -webswing"
62 },
63 "homeDir" : "@gsdl3srchomeunix@/gli",
64 "goodbyeUrl" : "/"
65 },
66 "maxClients" : 4,
67 "maxConnections" : 4,
68 "allowStealSession" : true,
69 "name" : "Greenstone Librarian Interface",
70 "sessionMode" : "CONTINUE_FOR_BROWSER",
71 "uploadMaxSize" : 100,
72 "webHomeDir" : "@gsdl3srchomeunix@/gli"
73 }
74}
Note: See TracBrowser for help on using the repository browser.