summaryrefslogtreecommitdiff
path: root/config.ru
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-12-07 11:42:12 +0100
committerChristoph Helma <helma@in-silico.ch>2012-12-07 11:42:12 +0100
commit17e783b5d159f205f0de59c6c522f5de5b8c9a6e (patch)
tree0b9f3602770ec9388b109b8c83e832a61216878a /config.ru
parentc38f9f2e4c2dec4ef163c6c76d64f5dbf4974a5a (diff)
working version without proxy
Diffstat (limited to 'config.ru')
-rw-r--r--config.ru6
1 files changed, 5 insertions, 1 deletions
diff --git a/config.ru b/config.ru
index 4050809..76b7b7a 100644
--- a/config.ru
+++ b/config.ru
@@ -1,6 +1,10 @@
SERVICE = "aop"
require 'bundler'
Bundler.require
-timeout = 600
require './application.rb'
+use Rack::Session::Dalli, :cache => Dalli::Client.new
+#use Rack::Cache,
+# :verbose => true,
+# :metastore => "memcached://127.0.0.1:11211/meta",
+# :entitystore => "memcached://127.0.0.1:11211/body"
run OpenTox::Application