forked from I2P_Developers/i2p.i2p

- add configs/win batchfiles to installer/resources/portable * currently only pkg-portable-win32 on win32 available need linuxers to write target preppkg-portable-nix/pkg-portable-linux and enable pkg-portable-win32 on linux (i doubt anyone need it ?) shell scripts should goto installer/resources/portable/configs/linux/
142 lines
5.5 KiB
Plaintext
142 lines
5.5 KiB
Plaintext
wrapper.java.command=java
|
|
wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
|
|
|
|
# Java Classpath (include wrapper.jar) Add class path elements as
|
|
# needed starting from 1
|
|
wrapper.java.classpath.1=lib/*.jar
|
|
# uncomment this to use the system classpath as well (e.g. to get tools.jar)
|
|
#wrapper.java.classpath.2=%CLASSPATH%
|
|
|
|
# Java Library Path (location of Wrapper.DLL or libwrapper.so)
|
|
wrapper.java.library.path.1=lib
|
|
|
|
# Java Additional Parameters
|
|
# Numbers must be consecutive (except for stripquotes)
|
|
wrapper.java.additional.1=-DloggerFilenameOverride=logs/log-router-@.txt
|
|
wrapper.java.additional.2=-Dorg.mortbay.http.Version.paranoid=true
|
|
wrapper.java.additional.3=-Dorg.mortbay.util.FileResource.checkAliases=false
|
|
wrapper.java.additional.4=-Dorg.mortbay.xml.XmlParser.NotValidating=true
|
|
wrapper.java.additional.5=-Di2p.dir.base=.
|
|
wrapper.java.additional.5.stripquotes=TRUE
|
|
# PORTABLE installation:
|
|
# uncomment the following
|
|
wrapper.java.additional.6=-Di2p.dir.pid=logs
|
|
wrapper.java.additional.6.stripquotes=TRUE
|
|
wrapper.java.additional.7=-Di2p.dir.temp=tmp
|
|
wrapper.java.additional.7.stripquotes=TRUE
|
|
wrapper.java.additional.8=-Di2p.dir.config=.
|
|
wrapper.java.additional.8.stripquotes=TRUE
|
|
|
|
# Uncomment this for better performance.
|
|
# If it doesn't work, server mode is not available in your JVM.
|
|
# This may not be required if your machine is already "server-class".
|
|
# See http://java.sun.com/j2se/1.5.0/docs/guide/vm/server-class.html
|
|
#wrapper.java.additional.6=-server
|
|
|
|
# Initial Java Heap Size (in MB)
|
|
#wrapper.java.initmemory=4
|
|
|
|
# Maximum Java Heap Size (in MB)
|
|
# The JVM's default is 64MB, and I2P can work fine in that, but to handle
|
|
# lots of I2PSnark activity in the same JVM, increasing the default max heap
|
|
# size should help. Feel free to reduce this if not using I2PSnark in the jvm
|
|
# High-bandwidth routers may need to increase to 256 or more.
|
|
#
|
|
# WARNING - for any changes to take effect, you must completely
|
|
# stop the router and the wrapper. Clicking 'Restart' on your
|
|
# router console will NOT reread this file! You must
|
|
# click "Shutdown", wait 11 minutes, then start i2p.
|
|
#
|
|
wrapper.java.maxmemory=64
|
|
|
|
# Application parameters. Add parameters as needed starting from 1
|
|
wrapper.app.parameter.1=net.i2p.router.Router
|
|
|
|
#********************************************************************
|
|
# Wrapper Logging Properties
|
|
#********************************************************************
|
|
# Format of output for the console. (See docs for formats)
|
|
wrapper.console.format=PM
|
|
|
|
# Log Level for console output. (See docs for log levels)
|
|
wrapper.console.loglevel=INFO
|
|
|
|
# Log file to use for wrapper output logging.
|
|
# You may wish to change this on linux so the log is
|
|
# preserved across OS restarts.
|
|
# If you do change it, add the following line above to
|
|
# tell the router where to find the wrapper log
|
|
# (change X to the next available number)
|
|
wrapper.logfile=logs\wrapper.log
|
|
|
|
# Format of output for the log file.
|
|
# The format consists of the tokens 'L' for log level, 'P' for prefix, 'D' for thread,
|
|
# 'T' for time, 'Z' for millisecond time, and 'M' for message
|
|
# Unfortunately the log timezone cannot be changed, see
|
|
# http://www.nabble.com/Log-message-timezone-td23651317.html
|
|
wrapper.logfile.format=TM
|
|
|
|
# Log Level for log file output. (See docs for log levels)
|
|
wrapper.logfile.loglevel=NOTICE
|
|
|
|
# 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=1m
|
|
|
|
# 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=2
|
|
|
|
# Log Level for sys/event log output. (See docs for log levels)
|
|
wrapper.syslog.loglevel=NONE
|
|
|
|
# choose what to do if the JVM kills itself based on the exit code
|
|
wrapper.on_exit.default=SHUTDOWN
|
|
wrapper.on_exit.0=SHUTDOWN
|
|
wrapper.on_exit.1=SHUTDOWN
|
|
# OOM
|
|
wrapper.on_exit.10=RESTART
|
|
# graceful shutdown
|
|
wrapper.on_exit.2=SHUTDOWN
|
|
# hard shutdown
|
|
wrapper.on_exit.3=SHUTDOWN
|
|
# hard restart
|
|
wrapper.on_exit.4=RESTART
|
|
# hard restart
|
|
wrapper.on_exit.5=RESTART
|
|
|
|
# the router may take a few seconds to save state, etc
|
|
wrapper.jvm_exit.timeout=30
|
|
|
|
# give the OS 60s to clear all the old sockets / etc before restarting
|
|
# Let's change the default from 60 to 15 seconds and see if anyone moans..
|
|
wrapper.restart.delay=5
|
|
|
|
wrapper.ping.interval=300
|
|
# The ping timeout must be at least 5 seconds longer than the value of wrapper.ping.interval.
|
|
# Extend this if you are getting 'JVM appears hung' shutdowns.
|
|
wrapper.ping.timeout=320
|
|
|
|
# use the wrapper's internal timer thread. otherwise this would
|
|
# force a restart of the router during daylight savings time as well
|
|
# as any time that the OS clock changes
|
|
wrapper.use_system_time=false
|
|
|
|
# pid file for the JVM
|
|
# If you plan to have multiple wrappers running on the same machine,
|
|
# you should copy this file, change the location or file name,
|
|
# and edit the i2prouter script to change the WRAPPER_CONF setting
|
|
# to point to the new wrapper.config location.
|
|
wrapper.java.pidfile=logs\routerjvm.pid
|
|
# This means i2prouter looks for './i2p.pid'.
|
|
# See comments above for wrapper.java.pidfile
|
|
# PORTABLE installation:
|
|
# Use the following instead.
|
|
wrapper.pidfile=logs/i2p.pid
|
|
|
|
#********************************************************************
|
|
# Wrapper NT Service Properties
|
|
#********************************************************************
|
|
# Not useful for portable version - BOOM |