blob: bd0a89cd3ecf29406cb99b468fb8a3914680acf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# JVM Runtime
# Using the default setting, it will determine your JVM from the system-vm
# set using java-config.
# See java-config(1) manual page for assistance in determining this value.
#
# You can override this value with whatever path you wish.
# Example: JAVA_HOME=/opt/sun-jdk-1.4.1.01
JAVA_HOME=`java-config -O`
# (Optional) Java runtime options.
# WARNING! Prepend each option with -J, so -Xmx512m should be -J-Xmx512m
# JAVA_OPTS=""
# Where your Resin is installed
RESIN_HOME=/usr/lib/resin
# Resin Log Locations
RESIN_OUT=/var/log/resin/resin_out.log
RESIN_ERR=/var/log/resin/resin_err.log
# The CLASSPATH for Resin to use, plus any others you need.
CLASSPATH=$(java-config -p resin,iso-relax,aopalliance-1)
# START/STOP settings
RESIN_START="start"
RESIN_STOP="stop"
|