blob: 3b78207497b4c036032ee887948f9f2b9acc4501 (
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
28
29
30
31
32
33
34
35
36
|
# $Header: /var/cvsroot/gentoo-x86/www-servers/resin/files/3.0.8/resin.conf,v 1.1 2004/08/08 18:21:19 stuart Exp $
# 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 used when the "start", "stop", or "run"
# commands are executed.
# JAVA_OPTS=""
# Where your Resin is installed
RESIN_HOME=/opt/resin
SERVER_ROOT=${RESIN_HOME}
# Resin's User
RESIN_USER=resin
# Resin Log Locations
RESIN_OUT=/var/log/resin/resin_out.log
RESIN_ERR=/var/log/resin/resin_err.log
# Location of the Resin JARs and classes
RESIN_LIBDIR=/usr/share/resin/lib
# The CLASSPATH for Resin to use, plus any others you need.
CLASSPATH=$(java-config -p resin 2>/dev/null):${RESIN_LIBDIR}/lib
# START/STOP settings
RESIN_START="-java_home ${JAVA_HOME} -resin_home ${RESIN_HOME} -stdout ${RESIN_OUT} -stderr ${RESIN_ERR} start"
RESIN_STOP="stop"
|