summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-01-20 16:14:52 -0500
committerSimo Sorce <simo@redhat.com>2014-01-23 18:52:51 -0500
commit311315497190ea660bf7516b4d9f67bfc4a48837 (patch)
treefed40284eb54b48e40796544b961f778b41398bd /templates
parent82de4ac47d51314caedab7b99457a34984e42a32 (diff)
downloadipsilon-311315497190ea660bf7516b4d9f67bfc4a48837.tar.gz
ipsilon-311315497190ea660bf7516b4d9f67bfc4a48837.tar.xz
ipsilon-311315497190ea660bf7516b4d9f67bfc4a48837.zip
Add Kerberos Negotiate auth plugin
This plugin depends on the proper configuration of mod_auth_kerb The mod_auth_kerb plugin should be configured with a <Location> directive like the folowing: <Location /idp/login/krb/negotiate> AuthType Kerberos AuthName "Kerberos Login" KrbMethodNegotiate on KrbMethodK5Passwd off KrbServiceName HTTP KrbAuthRealms $REALM_NAME Krb5KeyTab $KEYTAB_NAME KrbSaveCredentials off KrbConstrainedDelegation off Require valid-user ErrorDocument 401 /idp/login/krb/unauthorized </Location>
Diffstat (limited to 'templates')
-rw-r--r--templates/login/krb.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/login/krb.html b/templates/login/krb.html
new file mode 100644
index 0000000..1f9107b
--- /dev/null
+++ b/templates/login/krb.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8"></meta>
+ <title>{{ title }}</title>
+ <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
+ <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
+</head>
+<body>
+ <div id="container">
+ <div id="logo">
+ <p>Ipsilon</p>
+ </div>
+ <div id="login">
+ <p>Press <a href="{{ cont }}">here</a> if your browser does not
+ redirect you in a few seconds</a>
+ </div>
+ </div>
+</body>
+</html>