From ac78f41746caf3d5ff05bc197f55209f3d84225c Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Mon, 1 Dec 2008 23:05:39 +0100 Subject: added memcached for sessions --- pause_openid.pl | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pause_openid.pl (limited to 'pause_openid.pl') diff --git a/pause_openid.pl b/pause_openid.pl new file mode 100644 index 0000000..cd72605 --- /dev/null +++ b/pause_openid.pl @@ -0,0 +1,26 @@ +use strict; +use warnings; + +# Returnvalue +return { + + # Catalyst + name => 'PAUSE::OpenID', + + session => { + flash_to_stash => 1, + expires => 172800, # two days + memcached_new_args => { + data => [ "10.10.10.108:11211" ], + namespace => "pause_openid_session", + }, + }, + + # Static::Simple + 'static' => { + debug => 0, + logging => 0, + dirs => [qw/static/], + }, + +}; -- cgit v1.2.3