Fixed critical escaping bug in pagination plugin and made this a hard dependency
diff --git a/korap.conf b/korap.conf
index 02d0fc9..05a476f 100644
--- a/korap.conf
+++ b/korap.conf
@@ -10,12 +10,31 @@
engine => 'Korap::Plugin::KorapSearch'
},
CHI => {
+ session_cache => {
+ driver => 'FastMmap',
+ root_dir => app->home . '/cache/session',
+ cache_size => '3m'
+ },
default => {
driver => 'FastMmap',
- root_dir => app->home . '/cache',
+ root_dir => app->home . '/cache/data',
cache_size => '12m'
}
},
+ Oro => {
+ users => {
+ file => app->home .'/db/users.sqlite'
+ },
+ },
+ 'Oro-Session' => {
+ name => 'KorAP',
+ chi_handle => 'session_cache'
+ },
+ 'Oro-Account' => {
+ invalid => [qw/corpus collection user admin tutorial/],
+ default_lang => 'de',
+ oro_handle => 'users',
+ },
hypnotoad => {
listen => ['http://*:6666', 'http://*:5555'],
workers => 3