#
# These are the default values for the local configuration.
#
# Please don't edit this file as it won't be preserverd when updating the
# package that contains it. If you need to do updates use
# /etc/ovirt-engine/engine.conf instead.
#

#
# The location of the Java virtual machine used by the engine:
#
JAVA_HOME=/usr/lib/jvm/jre-1.7.0-openjdk.x86_64

#
# The location of the application server used by the engine:
#
JBOSS_HOME=/usr/share/jboss-as

#
# Important directories used by the engine:
#
ENGINE_ETC=/home/wil/ovirt-engine/etc/ovirt-engine
ENGINE_PKI=/home/wil/ovirt-engine/etc/pki/ovirt-engine
ENGINE_LOG=/home/wil/ovirt-engine/var/log/ovirt-engine
ENGINE_TMP=/home/wil/ovirt-engine/var/tmp/ovirt-engine
ENGINE_USR=/home/wil/ovirt-engine/share/ovirt-engine
ENGINE_VAR=/home/wil/ovirt-engine/var/lib/ovirt-engine
ENGINE_CACHE=/home/wil/ovirt-engine/var/cache/ovirt-engine

#
# Intervals for stoping the engine:
#
ENGINE_STOP_TIME=10
ENGINE_STOP_INTERVAL=1

#
# The names of the user and group that will execute the java
# virtual machine of the engine:
#
ENGINE_USER=ovirt
ENGINE_GROUP=ovirt

#
# These variables control the amount of memory used by the java
# virtual machine where the engine runs:
#
ENGINE_HEAP_MIN=1g
ENGINE_HEAP_MAX=1g
ENGINE_PERM_MIN=256m
ENGINE_PERM_MAX=256m

#
# Use this if you want to enable remote debugging of the engine java virtual
# machine (useful mainly for developers):
#
#   ENGINE_DEBUG_ADDRESS=ovirt.example.com:8787
#
# The address and port should be reachable from your debugger, so using
# localhost is not good unless you are running the engine and the debugger in
# the same machine.
#
ENGINE_DEBUG_ADDRESS=

#
# Change following to true if you want to enable garbage collection debug
# information (will be sent to the console.log file):
#
ENGINE_VERBOSE_GC=false

#
# Extra system properties to be added to the java virtual machine
# of the engine. Properties can be specified using the typical
# java syntax:
#
#   -Dmy.param=my.value
#   -Dmy.flag
#
# If the -D prefix is not used it will be automatically added, so
# the following is also valid:
#
#   my.param=my.value
#   my.flag
#
# If several properties need to be specified they should all go in
# the same line and separated by spaces:
#
#   -Dmy.param=my.value -Dmy.flag -Dyour.param=your.value
#
ENGINE_PROPERTIES=

#
# Additional applications to be deployed in the instance of the
# application server started by the engine. This is a list of space
# separated files or directories that should exist under
# /usr/share/ovirt-engine:
#
ENGINE_APPS=engine.ear

#
# Flags to enable or disable the web server (the proxy) and the
# connectors of the application server:
#
ENGINE_PROXY_ENABLED=true
ENGINE_HTTP_ENABLED=false
ENGINE_HTTPS_ENABLED=false
ENGINE_AJP_ENABLED=true

#
# Engine host fully qualified domain name:
#
ENGINE_FQDN=localhost.localdomain

#
# Ports used by the web server (the proxy) and by the connectors
# of the application server:
#
ENGINE_PROXY_HTTP_PORT=80
ENGINE_PROXY_HTTPS_PORT=443
ENGINE_HTTP_PORT=8700
ENGINE_HTTPS_PORT=8701
ENGINE_AJP_PORT=8702

#
# A comma separated list of the SSL protocols supported by the engine
# when the HTTPS connector is enabled. The possible values are the
# following:
#
#   SSLv3
#   TLSv1
#   TLSv1.1
#   TLSv1.2
#
ENGINE_HTTPS_PROTOCOLS=SSLv3,TLSv1,TLSv1.1,TLSv1.2

#
# Database connection details (note that the password is
# encrypted):
#
ENGINE_DB_DRIVER=org.postgresql.Driver
ENGINE_DB_URL=jdbc:postgresql://localhost/engine
ENGINE_DB_SSL=false
ENGINE_DB_USER=engine
ENGINE_DB_PASSWORD=

#
# Size of the database connection pool:
#
ENGINE_DB_MIN_CONNECTIONS=1
ENGINE_DB_MAX_CONNECTIONS=100

#
# Timeout value in milliseconds for stop checking if database
# connectivity is available (5 minutes at the moment):
#
ENGINE_DB_CONNECTION_TIMEOUT=300000

#
# Interval value in milliseconds for sleep between two subsequent
# database connectivity checks:
#
ENGINE_DB_CHECK_INTERVAL=1000
