View | Details | Raw Unified | Return to bug 22857
Collapse All | Expand All

(-)a/debian/templates/koha-conf-site.xml.in (+11 lines)
Lines 269-274 __END_SRU_PUBLICSERVER__ Link Here
269
 <port>3306</port>
269
 <port>3306</port>
270
 <user>__DB_USER__</user>
270
 <user>__DB_USER__</user>
271
 <pass>__DB_PASS__</pass>
271
 <pass>__DB_PASS__</pass>
272
 <tls>__DB_USE_TLS__</tls>
273
 <ca>__DB_TLS_CA_CERTIFICATE__</ca>
274
 <cert>__DB_TLS_CLIENT_CERTIFICATE__</cert>
275
 <key>__DB_TLS_CLIENT_KEY__</key>
272
 <biblioserver>biblios</biblioserver>
276
 <biblioserver>biblios</biblioserver>
273
 <biblioservershadow>1</biblioservershadow>
277
 <biblioservershadow>1</biblioservershadow>
274
 <authorityserver>authorities</authorityserver>
278
 <authorityserver>authorities</authorityserver>
Lines 399-403 __END_SRU_PUBLICSERVER__ Link Here
399
      server. e.g. Antarctica/South_Pole -->
403
      server. e.g. Antarctica/South_Pole -->
400
 <timezone>__TIMEZONE__</timezone>
404
 <timezone>__TIMEZONE__</timezone>
401
405
406
 <!-- flag for development purposes
407
      dev_install is used to adjust some paths specific to dev installations
408
      strict_sql_modes should not be used in a production environement
409
                       developers use it to catch bugs related to strict SQL modes -->
410
 <dev_install>0</dev_install>
411
 <strict_sql_modes>0</strict_sql_modes>
412
402
</config>
413
</config>
403
</yazgfs>
414
</yazgfs>
(-)a/etc/koha-conf.xml (-1 / +16 lines)
Lines 102-107 __PAZPAR2_TOGGLE_XML_POST__ Link Here
102
 <logdir>__LOG_DIR__</logdir>
102
 <logdir>__LOG_DIR__</logdir>
103
 <docdir>__DOC_DIR__</docdir>
103
 <docdir>__DOC_DIR__</docdir>
104
 <backupdir>__BACKUP_DIR__</backupdir>
104
 <backupdir>__BACKUP_DIR__</backupdir>
105
 <!-- URL of the mana KB server -->
106
 <!-- alternative value http://mana-test.koha-community.org to query the test server -->
107
 <mana_config>https://mana-kb.koha-community.org</mana_config>
105
 <!-- Enable the two following to allow superlibrarians to download
108
 <!-- Enable the two following to allow superlibrarians to download
106
      database and configuration dumps (respectively) from the Export
109
      database and configuration dumps (respectively) from the Export
107
      tool -->
110
      tool -->
Lines 117-124 __PAZPAR2_TOGGLE_XML_POST__ Link Here
117
 <useshibboleth>0</useshibboleth><!-- see C4::Auth_with_shibboleth for extra configs you must do to turn this on -->
120
 <useshibboleth>0</useshibboleth><!-- see C4::Auth_with_shibboleth for extra configs you must do to turn this on -->
118
 <zebra_lockdir>__ZEBRA_LOCK_DIR__</zebra_lockdir>
121
 <zebra_lockdir>__ZEBRA_LOCK_DIR__</zebra_lockdir>
119
 <use_zebra_facets>1</use_zebra_facets>
122
 <use_zebra_facets>1</use_zebra_facets>
123
 <zebra_max_record_size>1024</zebra_max_record_size>
120
 <queryparser_config>__KOHA_CONF_DIR__/searchengine/queryparser.yaml</queryparser_config>
124
 <queryparser_config>__KOHA_CONF_DIR__/searchengine/queryparser.yaml</queryparser_config>
121
 <log4perl_conf>__KOHA_CONF_DIR__/log4perl.conf</log4perl_conf>
125
 <log4perl_conf>__KOHA_CONF_DIR__/log4perl.conf</log4perl_conf>
126
 <!-- Uncomment/edit next setting if you want to adjust zebra log levels.
127
      Default is: none,fatal,warn.
128
      You can also include: debug,log,malloc,all,request.
129
      Use a comma-separated list of levels to include. -->
130
 <!-- <zebra_loglevels>none,fatal,warn</zebra_loglevels> -->
122
 <memcached_servers>__MEMCACHED_SERVERS__</memcached_servers>
131
 <memcached_servers>__MEMCACHED_SERVERS__</memcached_servers>
123
 <memcached_namespace>__MEMCACHED_NAMESPACE__</memcached_namespace>
132
 <memcached_namespace>__MEMCACHED_NAMESPACE__</memcached_namespace>
124
 <template_cache_dir>__TEMPLATE_CACHE_DIR__</template_cache_dir>
133
 <template_cache_dir>__TEMPLATE_CACHE_DIR__</template_cache_dir>
Lines 218-222 __PAZPAR2_TOGGLE_XML_POST__ Link Here
218
      server. e.g. Antarctica/South_Pole -->
227
      server. e.g. Antarctica/South_Pole -->
219
 <timezone></timezone>
228
 <timezone></timezone>
220
229
230
 <!-- flag for development purposes
231
      dev_install is used to adjust some paths specific to dev installations
232
      strict_sql_modes should not be used in a production environement
233
                       developers use it to catch bugs related to strict SQL modes -->
234
 <dev_install>0</dev_install>
235
 <strict_sql_modes>0</strict_sql_modes>
236
221
</config>
237
</config>
222
</yazgfs>
238
</yazgfs>
223
- 

Return to bug 22857