Initial commit
This commit is contained in:
commit
2ac834252e
1 changed files with 30 additions and 0 deletions
30
README.md
Normal file
30
README.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#devise-kerberos-authenticatable
|
||||||
|
|
||||||
|
##Description
|
||||||
|
|
||||||
|
devise-kerberos-authenticatable is a Devise exenstion that can be used to authenticate against Kerberos as setup in your local krb5.conf file.
|
||||||
|
|
||||||
|
##Installation
|
||||||
|
|
||||||
|
###Dependencies
|
||||||
|
[timfel-krb5-auth](https://github.com/timfel/krb5-auth) depends on the headers and development libraries for MIT Kerberos.
|
||||||
|
```sudo apt-get install libkrb5-dev```
|
||||||
|
###Server Setup
|
||||||
|
Modify your /etc/krb5.conf file as necessary to authenticate against your Kerberos server.
|
||||||
|
|
||||||
|
###Rails Setup
|
||||||
|
* Edit config/initializers/devise.rb to use a username instead of email for login.
|
||||||
|
```config.authentication_keys = [ :username ]```
|
||||||
|
* Update your Devise model app/models/user.rb
|
||||||
|
```
|
||||||
|
devise :kerberos_authenticatable
|
||||||
|
attr_accessible :username
|
||||||
|
```
|
||||||
|
* Rebuild your Devise views automatically or by hand.
|
||||||
|
```
|
||||||
|
rake generate devise:views
|
||||||
|
```
|
||||||
|
|
||||||
|
##Other
|
||||||
|
* Currently only supports authentication and does not include password modification functionality.
|
||||||
|
* Initial code based largely on [devise_pam_authenticatable](https://github.com/jwilson511/devise_pam_authenticatable)
|
Loading…
Reference in a new issue