koha-sites.conf.j2 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # NOTE: for a complete list of valid options please read koha-create(8)
  2. ## Apache virtual hosts creation variables
  3. #
  4. # Please note that the URLs are built like this:
  5. # OPAC: http://<OPACPREFIX><INSTANCE NAME><OPACSUFFIX><DOMAIN>:<OPACPORT>
  6. # STAFF: http://<INTRAPREFIX><INSTANCE NAME><INTRASUFFIX><DOMAIN>:<INTRAPORT>
  7. DOMAIN=".{{domain}}"
  8. INTRAPORT="80"
  9. INTRAPREFIX=""
  10. INTRASUFFIX="-intra"
  11. OPACPORT="80"
  12. OPACPREFIX=""
  13. OPACSUFFIX=""
  14. ## Default data to be loaded
  15. #
  16. # DEFAULTSQL: filename
  17. # Specify an SQL file with default data to load during instance creation
  18. # The SQL file can be optionally compressed with gzip
  19. # default: (empty)
  20. DEFAULTSQL=""
  21. ## Zebra global configuration variables
  22. #
  23. # ZEBRA_MARC_FORMAT: 'marc21' | 'unimarc'
  24. # Specifies the MARC records format for indexing
  25. # default: 'marc21'
  26. ZEBRA_MARC_FORMAT="marc21"
  27. # ZEBRA_LANGUAGE: 'cs' | 'el' | 'en' | 'es' | 'fr' | 'nb' | 'ru' | 'uk'
  28. # Primary language for Zebra indexing
  29. # default: 'en'
  30. ZEBRA_LANGUAGE="en"
  31. ## Memcached global configuration variables
  32. #
  33. # USE_MEMCACHED: 'yes' | 'no'
  34. # Make the created instance use memcached. Can be altered later.
  35. # default: 'yes'
  36. USE_MEMCACHED="yes"
  37. # MEMCACHED_SERVERS: comma separated list of memcached servers (ip:port)
  38. # Specify a list of memcached servers for the Koha instance
  39. # default: '127.0.0.1:11211'
  40. MEMCACHED_SERVERS="127.0.0.1:11211"
  41. # MEMCACHED_PREFIX:
  42. # Specify a string to be used as prefix for defining the memcached namespace
  43. # for the created instance.
  44. # default: 'koha_'
  45. MEMCACHED_PREFIX="koha_"