summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <domm@cpan.org>2008-12-01 23:14:22 +0100
committerThomas Klausner <domm@cpan.org>2008-12-01 23:14:22 +0100
commit5171ea26d5560139581428c20ab704fb323b5c10 (patch)
tree03b416ac61637e69ecc0024d8f3be1d77c2ae199
parentperltidy (diff)
downloadSimple-OpenID-5171ea26d5560139581428c20ab704fb323b5c10.tar.gz
Simple-OpenID-5171ea26d5560139581428c20ab704fb323b5c10.tar.bz2
Simple-OpenID-5171ea26d5560139581428c20ab704fb323b5c10.zip
added hostname config and local_config
-rw-r--r--pause_openid.pl7
-rw-r--r--pause_openid_local.pl10
2 files changed, 15 insertions, 2 deletions
diff --git a/pause_openid.pl b/pause_openid.pl
index cd72605..f480b77 100644
--- a/pause_openid.pl
+++ b/pause_openid.pl
@@ -16,11 +16,14 @@ return {
},
},
- # Static::Simple
'static' => {
debug => 0,
logging => 0,
dirs => [qw/static/],
},
-
+
+ 'PAUSE::OpenID'=>{
+ hostname=>'id.pause.org',
+ },
+
};
diff --git a/pause_openid_local.pl b/pause_openid_local.pl
new file mode 100644
index 0000000..b823bbe
--- /dev/null
+++ b/pause_openid_local.pl
@@ -0,0 +1,10 @@
+use strict;
+use warnings;
+
+# Returnvalue
+return {
+ 'PAUSE::OpenID'=>{
+ hostname=>'localhost',
+ },
+
+};