blob: b9d1519e3c796c8dcd384ae086d63e97ac724d68 [file] [log] [blame]
Akron754dae52017-09-28 14:54:28 +02001# This is the base configuration file for Kalamar.
2# Further configurations can override these values.
3# To define a new configuration, create a file in the
4# root folder of your application with the name like
5#
6# kalamar.[MYNAME].conf
7#
8# To load the configuration, start your applikation with
9# the environment variable
10#
11# MOJO_MODE=[MYNAME]
12#
13# Further typical configurations in this file include
14#
15# - hypnotoad
16# See Mojo::Server::Hypnotoad
17# - MailException
18# See Mojolicious::Plugin::MailException
19# - TagHelpers-Pagination
20# See Mojolicious::Plugin::TagHelpers::Pagination
21# - Search
22# See Mojolicious::Plugin::Search
23#
24
25# The default Kustvakt api endpoint
26my $api = 'http://localhost:9999/api/';
Nils Diewald5d1ffb42014-05-21 17:45:34 +000027{
Nils Diewalddd2d4e82014-05-31 17:08:33 +000028 Search => {
Nils Diewald2fe12e12015-03-06 16:47:06 +000029 engine => 'Kalamar::API',
Akron40cc1d82017-05-10 17:58:16 +020030 # Kustvakt server:
Akron3cd391e2017-03-29 23:42:54 +020031 api => $ENV{'KALAMAR_API'} // $api
Akrone8235be2016-06-27 11:02:18 +020032 },
33 Kalamar => {
Akron754dae52017-09-28 14:54:28 +020034 # Kustvakt server:
Akron7d75ee32017-05-02 13:42:41 +020035 api => $ENV{'KALAMAR_API'} // $api,
Akron754dae52017-09-28 14:54:28 +020036
37 # In case, the user management of Kustvakt
38 # is used, make this a true value
Akrona7cfd902017-12-21 19:28:36 +010039 auth_support => 0,
40
41 # The name of the base corpus,
42 # for query examples (see kalamar.queries.dict)
43 # examplecorpus => 'corola'
Nils Diewald2329e1d2014-06-12 16:07:57 +000044 },
Akron754dae52017-09-28 14:54:28 +020045
46 # See Mojolicious::Plugin::TagHelpers::MailToChiffre
Akron40cc1d82017-05-10 17:58:16 +020047 'TagHelpers-MailToChiffre' => {
48 method_name => 'PArok',
49 pattern_rotate => 673
50 },
Akron754dae52017-09-28 14:54:28 +020051
52 # See Mojolicious::Plugin::CHI
Nils Diewald2329e1d2014-06-12 16:07:57 +000053 CHI => {
54 default => {
55 driver => 'FastMmap',
Nils Diewald94bae912014-09-22 13:40:31 +000056 root_dir => app->home . '/cache/data',
Akrondadacf12016-01-22 19:24:59 +010057 cache_size => '100m',
58 max_size => '100m'
59 },
60 user => {
61 l1_cache => {
Akron3cd391e2017-03-29 23:42:54 +020062 driver => 'FastMmap',
63 root_dir => app->home . '/cache/usermap',
64 cache_size => '50m',
65 max_size => '50m'
Akrondadacf12016-01-22 19:24:59 +010066 },
67 driver => 'File',
68 root_dir => app->home . '/cache/userfile',
69 max_key_length => 64,
70 max_size => '500m'
Nils Diewald2329e1d2014-06-12 16:07:57 +000071 }
Nils Diewald5d1ffb42014-05-21 17:45:34 +000072 }
73}