Jonathan Druart
08c03af2ae
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
52 lines
1.5 KiB
Text
52 lines
1.5 KiB
Text
# NOTE: for a complete list of valid options please read koha-create(8)
|
|
|
|
## Apache virtual hosts creation variables
|
|
#
|
|
# Please note that the URLs are built like this:
|
|
# OPAC: http://<OPACPREFIX><INSTANCE NAME><OPACSUFFIX><DOMAIN>:<OPACPORT>
|
|
# STAFF: http://<INTRAPREFIX><INSTANCE NAME><INTRASUFFIX><DOMAIN>:<INTRAPORT>
|
|
DOMAIN=".myDNSname.org"
|
|
INTRAPORT="80"
|
|
INTRAPREFIX=""
|
|
INTRASUFFIX="-intra"
|
|
OPACPORT="80"
|
|
OPACPREFIX=""
|
|
OPACSUFFIX=""
|
|
|
|
## Default data to be loaded
|
|
#
|
|
# DEFAULTSQL: filename
|
|
# Specify an SQL file with default data to load during instance creation
|
|
# The SQL file can be optionally compressed with gzip
|
|
# default: (empty)
|
|
DEFAULTSQL=""
|
|
|
|
## Zebra global configuration variables
|
|
#
|
|
# ZEBRA_MARC_FORMAT: 'marc21' | 'unimarc'
|
|
# Specifies the MARC records format for indexing
|
|
# default: 'marc21'
|
|
ZEBRA_MARC_FORMAT="marc21"
|
|
|
|
# ZEBRA_LANGUAGE: 'cs' | 'el' | 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk'
|
|
# Primary language for Zebra indexing
|
|
# default: 'en'
|
|
ZEBRA_LANGUAGE="en"
|
|
|
|
## Memcached global configuration variables
|
|
#
|
|
# USE_MEMCACHED: 'yes' | 'no'
|
|
# Make the created instance use memcached. Can be altered later.
|
|
# default: 'yes'
|
|
USE_MEMCACHED="yes"
|
|
|
|
# MEMCACHED_SERVERS: comma separated list of memcached servers (ip:port)
|
|
# Specify a list of memcached servers for the Koha instance
|
|
# default: '127.0.0.1:11211'
|
|
MEMCACHED_SERVERS="127.0.0.1:11211"
|
|
|
|
# MEMCACHED_PREFIX:
|
|
# Specify a string to be used as prefix for defining the memcached namespace
|
|
# for the created instance.
|
|
# default: 'koha_'
|
|
MEMCACHED_PREFIX="koha_"
|