1 |
#******************************************************************** |
2 |
# Wrapper Properties |
3 |
#******************************************************************** |
4 |
# Java Application |
5 |
wrapper.java.command=%JAVA_HOME%/bin/java |
6 |
|
7 |
# Java Main class. This class must implement the WrapperListener interface |
8 |
# or guarantee that the WrapperManager class is initialized. Helper |
9 |
# classes are provided to do this for you. See the Integration section |
10 |
# of the documentation for details. |
11 |
wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp |
12 |
|
13 |
# Java Classpath (include wrapper.jar) Add class path elements as |
14 |
# needed starting from 1 |
15 |
wrapper.java.classpath.1=wrapper.jar |
16 |
wrapper.java.classpath.2=start.jar |
17 |
|
18 |
# Java Library Path (location of Wrapper.DLL or libwrapper.so) |
19 |
wrapper.java.library.path.1= |
20 |
|
21 |
# Java Additional Parameters |
22 |
wrapper.java.additional.1=-Djetty.home=.. |
23 |
wrapper.java.additional.2=-Djetty.port=8181 |
24 |
wrapper.java.additional.3=-Djava.awt.headless=true |
25 |
wrapper.java.additional.4=-Djava.endorsed.dirs=../lib/endorsed |
26 |
|
27 |
# Initial Java Heap Size (in MB) |
28 |
wrapper.java.initmemory=32 |
29 |
|
30 |
# Maximum Java Heap Size (in MB) |
31 |
wrapper.java.maxmemory=256 |
32 |
|
33 |
# Application parameters. Add parameters as needed starting from 1 |
34 |
wrapper.app.parameter.1=nl.hippo.fortress.start.Main |
35 |
wrapper.app.parameter.2=../config/jetty/cocoon.xml |
36 |
|
37 |
#******************************************************************** |
38 |
# Wrapper Logging Properties |
39 |
#******************************************************************** |
40 |
# Format of output for the console. (See docs for formats) |
41 |
wrapper.console.format=PM |
42 |
|
43 |
# Log Level for console output. (See docs for log levels) |
44 |
wrapper.console.loglevel=INFO |
45 |
|
46 |
# Log file to use for wrapper output logging. |
47 |
wrapper.logfile=../logs/wrapper.log |
48 |
|
49 |
# Format of output for the log file. (See docs for formats) |
50 |
wrapper.logfile.format=LPTM |
51 |
|
52 |
# Log Level for log file output. (See docs for log levels) |
53 |
wrapper.logfile.loglevel=INFO |
54 |
|
55 |
# Maximum size that the log file will be allowed to grow to before |
56 |
# the log is rolled. Size is specified in bytes. The default value |
57 |
# of 0, disables log rolling. May abbreviate with the 'k' (kb) or |
58 |
# 'm' (mb) suffix. For example: 10m = 10 megabytes. |
59 |
wrapper.logfile.maxsize=0 |
60 |
|
61 |
# Maximum number of rolled log files which will be allowed before old |
62 |
# files are deleted. The default value of 0 implies no limit. |
63 |
wrapper.logfile.maxfiles=0 |
64 |
|
65 |
# Log Level for sys/event log output. (See docs for log levels) |
66 |
wrapper.syslog.loglevel=NONE |
67 |
|
68 |
#******************************************************************** |
69 |
# Wrapper NT Service Properties |
70 |
#******************************************************************** |
71 |
# WARNING - Do not modify any of these properties when an application |
72 |
# using this configuration file has been installed as a service. |
73 |
# Please uninstall the service before modifying this section. The |
74 |
# service can then be reinstalled. |
75 |
|
76 |
# Name of the service |
77 |
wrapper.ntservice.name=fileImportService |
78 |
|
79 |
# Display name of the service |
80 |
wrapper.ntservice.displayname=File-import service |
81 |
|
82 |
# Description of the service |
83 |
wrapper.ntservice.description=Imports files and converts them to OpenOffice.org. The files contained in the resulting zip can be accessed directly. |
84 |
|
85 |
# Service dependencies. Add dependencies as needed starting from 1 |
86 |
wrapper.ntservice.dependency.1= |
87 |
|
88 |
# Mode in which the service is installed. AUTO_START or DEMAND_START |
89 |
wrapper.ntservice.starttype=AUTO_START |
90 |
|
91 |
# Allow the service to interact with the desktop. |
92 |
wrapper.ntservice.interactive=false |
93 |
|