|
Line 0
Link Here
|
| 0 |
- |
1 |
# NOTE: for a complete list of valid options please read koha-create(8) |
|
|
2 |
|
| 3 |
## Apache virtual hosts creation variables |
| 4 |
# |
| 5 |
# Please note that the URLs are built like this: |
| 6 |
# OPAC: http://<OPACPREFIX><INSTANCE NAME><OPACSUFFIX><DOMAIN>:<OPACPORT> |
| 7 |
# STAFF: http://<INTRAPREFIX><INSTANCE NAME><INTRASUFFIX><DOMAIN>:<INTRAPORT> |
| 8 |
DOMAIN=".myDNSname.org" |
| 9 |
INTRAPORT="80" |
| 10 |
INTRAPREFIX="" |
| 11 |
INTRASUFFIX="-intra" |
| 12 |
OPACPORT="80" |
| 13 |
OPACPREFIX="" |
| 14 |
OPACSUFFIX="" |
| 15 |
|
| 16 |
## Default data to be loaded |
| 17 |
# |
| 18 |
# DEFAULTSQL: filename |
| 19 |
# Specify an SQL file with default data to load during instance creation |
| 20 |
# default: (empty) |
| 21 |
DEFAULTSQL="" |
| 22 |
|
| 23 |
## Zebra global configuration variables |
| 24 |
# |
| 25 |
# ZEBRA_MARC_FORMAT: 'marc21' | 'normarc' | 'unimarc' |
| 26 |
# Specifies the MARC records format for indexing |
| 27 |
# default: 'marc21' |
| 28 |
ZEBRA_MARC_FORMAT="marc21" |
| 29 |
|
| 30 |
# ZEBRA_LANGUAGE: 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk' |
| 31 |
# Primary language for Zebra indexing |
| 32 |
# default: 'en' |
| 33 |
ZEBRA_LANGUAGE="en" |
| 34 |
|
| 35 |
# BIBLIOS_INDEXING_MODE: 'dom' | 'grs1' |
| 36 |
# Indexing mode for bibliographic records |
| 37 |
# default: 'dom' |
| 38 |
BIBLIOS_INDEXING_MODE="dom" |
| 39 |
|
| 40 |
# AUTHORITIES_INDEXING_MODE: 'dom' | 'grs1' |
| 41 |
# Indexing mode for authorithy records |
| 42 |
# default: 'dom' |
| 43 |
AUTHORITIES_INDEXING_MODE="dom" |
| 44 |
|
| 45 |
## Memcached global configuration variables |
| 46 |
# |
| 47 |
# USE_MEMCACHED: 'yes' | 'no' |
| 48 |
# Make the created instance use memcached. Can be altered later. |
| 49 |
# default: 'no' |
| 50 |
USE_MEMCACHED="no" |
| 51 |
|
| 52 |
# MEMCACHED_SERVERS: comma separated list of memcached servers (ip:port) |
| 53 |
# Specify a list of memcached servers for the Koha instance |
| 54 |
# default: '127.0.0.1:11211' |
| 55 |
MEMCACHED_SERVERS="127.0.0.1:11211" |
| 56 |
|
| 57 |
# MEMCACHED_PREFIX: |
| 58 |
# Specify a string to be used as prefix for defining the memcached namespace |
| 59 |
# for the created instance. |
| 60 |
# default: 'koha_' |
| 61 |
MEMCACHED_PREFIX="koha_" |
| 62 |
|