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=9180 |
24 |
|
25 |
# Initial Java Heap Size (in MB) |
26 |
wrapper.java.initmemory=32 |
27 |
|
28 |
# Maximum Java Heap Size (in MB) |
29 |
wrapper.java.maxmemory=128 |
30 |
|
31 |
# Application parameters. Add parameters as needed starting from 1 |
32 |
wrapper.app.parameter.1=nl.hippo.fortress.start.Main |
33 |
wrapper.app.parameter.2=../config/jetty/cocoon.xml |
34 |
|
35 |
#******************************************************************** |
36 |
# Wrapper Logging Properties |
37 |
#******************************************************************** |
38 |
# Format of output for the console. (See docs for formats) |
39 |
wrapper.console.format=PM |
40 |
|
41 |
# Log Level for console output. (See docs for log levels) |
42 |
wrapper.console.loglevel=INFO |
43 |
|
44 |
# Log file to use for wrapper output logging. |
45 |
wrapper.logfile=../logs/wrapper.log |
46 |
|
47 |
# Format of output for the log file. (See docs for formats) |
48 |
wrapper.logfile.format=LPTM |
49 |
|
50 |
# Log Level for log file output. (See docs for log levels) |
51 |
wrapper.logfile.loglevel=INFO |
52 |
|
53 |
# Maximum size that the log file will be allowed to grow to before |
54 |
# the log is rolled. Size is specified in bytes. The default value |
55 |
# of 0, disables log rolling. May abbreviate with the 'k' (kb) or |
56 |
# 'm' (mb) suffix. For example: 10m = 10 megabytes. |
57 |
wrapper.logfile.maxsize=0 |
58 |
|
59 |
# Maximum number of rolled log files which will be allowed before old |
60 |
# files are deleted. The default value of 0 implies no limit. |
61 |
wrapper.logfile.maxfiles=0 |
62 |
|
63 |
# Log Level for sys/event log output. (See docs for log levels) |
64 |
wrapper.syslog.loglevel=NONE |
65 |
|
66 |
#******************************************************************** |
67 |
# Wrapper NT Service Properties |
68 |
#******************************************************************** |
69 |
# WARNING - Do not modify any of these properties when an application |
70 |
# using this configuration file has been installed as a service. |
71 |
# Please uninstall the service before modifying this section. The |
72 |
# service can then be reinstalled. |
73 |
|
74 |
# Name of the service |
75 |
wrapper.ntservice.name=fileImportService |
76 |
|
77 |
# Display name of the service |
78 |
wrapper.ntservice.displayname=File-import service |
79 |
|
80 |
# Description of the service |
81 |
wrapper.ntservice.description=Imports files and converts them to OpenOffice.org. The files contained in the resulting zip can be accessed directly. |
82 |
|
83 |
# Service dependencies. Add dependencies as needed starting from 1 |
84 |
wrapper.ntservice.dependency.1= |
85 |
|
86 |
# Mode in which the service is installed. AUTO_START or DEMAND_START |
87 |
wrapper.ntservice.starttype=AUTO_START |
88 |
|
89 |
# Allow the service to interact with the desktop. |
90 |
wrapper.ntservice.interactive=false |
91 |
|