12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #********************************************************************
- # Wrapper Properties
- #********************************************************************
- # Java Application
- wrapper.java.command=java
- # Java Main class
- wrapper.java.mainclass=org.alfresco.jlan.app.JLANServerService
- # Java Classpath (include wrapper.jar) Add class path elements as
- # needed starting from 1
- wrapper.java.classpath.1=../wrapper.jar
- wrapper.java.classpath.2=../../jars/alfresco-jlan.jar
- wrapper.java.classpath.3=../../libs/cryptix-jce-provider.jar
- # Java Library Path (location of Wrapper.DLL or libwrapper.so)
- wrapper.java.library.path.1=./
- wrapper.java.library.path.2=../../jni
- # Java Additional Parameters
- #wrapper.java.additional.1=-DPATH="%PATH%"
- # Initial Java Heap Size (in MB)
- wrapper.java.initmemory=64
- # Maximum Java Heap Size (in MB)
- wrapper.java.maxmemory=256
- # Application parameters. Add parameters as needed starting from 1
- #wrapper.app.parameter.1=
- # JLAN Server service startup timeout
- wrapper.startup.timeout=30
- #********************************************************************
- # Wrapper Logging Properties
- #********************************************************************
- # Format of output for the console. (See docs for formats)
- wrapper.console.format=LPM
- # Log Level for console output. (See docs for log levels)
- wrapper.console.loglevel=INFO
- # Log file to use for wrapper output logging.
- wrapper.logfile=jlanserver.log
- # Format of output for the log file. (See docs for formats)
- wrapper.logfile.format=LPTM
- # Log Level for log file output. (See docs for log levels)
- wrapper.logfile.loglevel=INFO
- # Maximum size that the log file will be allowed to grow to before
- # the log is rolled. Size is specified in bytes. The default value
- # of 0, disables log rolling. May abbreviate with the 'k' (kb) or
- # 'm' (mb) suffix. For example: 10m = 10 megabytes.
- wrapper.logfile.maxsize=0
- # Maximum number of rolled log files which will be allowed before old
- # files are deleted. The default value of 0 implies no limit.
- wrapper.logfile.maxfiles=0
- # Log Level for sys/event log output. (See docs for log levels)
- wrapper.syslog.loglevel=NONE
- #********************************************************************
- # Wrapper NT Service Properties
- #********************************************************************
- # WARNING - Do not modify any of these properties when an application
- # using this configuration file has been installed as a service.
- # Please uninstall the service before modifying this section. The
- # service can then be reinstalled.
- # Name of the service
- wrapper.ntservice.name=JLANServer
- # Display name of the service
- wrapper.ntservice.displayname=Alfresco JLAN Server
- # Description of the service
- wrapper.ntservice.description=SMB/CIFS, NFS and FTP virtual filesystem server
- # Service dependencies. Add dependencies as needed starting from 1
- wrapper.ntservice.dependency.1=
- # Mode in which the service is installed. AUTO_START or DEMAND_START
- wrapper.ntservice.starttype=DEMAND_START
- # Allow the service to interact with the desktop.
- wrapper.ntservice.interactive=false
- # Account to run the service under
- #
- # Do not use .\LocalSystem as the server needs access to the network
- wrapper.ntservice.account=
- wrapper.ntservice.password=
|