Sha256: e1dcccdd7c73655609e1d819bc50180586b07ed4fb02d895cb64da2fab76c0d9

Contents?: true

Size: 794 Bytes

Versions: 3

Compression:

Stored size: 794 Bytes

Contents

## Build / start instructions for LDAP

# cd test/ldap
# mkdir openldap-data
# mkdir openldap-data/run
# ./run-server.sh &
# ldapadd -h localhost -p 3389 -x -D "cn=admin,dc=test,dc=com" -w secret -f base.ldif
# 
# this creates the users:
#   cn=admin,dc=test,com / secret
#   cn=example.user@test.com,ou=people,dc=test,dc=com / secret

authorizations: &AUTHORIZATIONS
  ## Authorization
  group_base: ou=groups,dc=test,dc=com
  required_groups:
    - cn=admins,ou=groups,dc=test,dc=com
  require_attribute:
    objectClass: inetOrgPerson
    authorizationRole: blogAdmin
    
test: &TEST
  host: localhost
  port: 3389
  attribute: cn
  base: ou=people,dc=test,dc=com
  admin_user: cn=admin,dc=test,dc=com
  admin_password: secret
  ssl: false
  <<: *AUTHORIZATIONS
  
development:
  <<: *TEST

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
devise_ldap_authenticatable-0.4.2 test/rails_app/config/ldap.yml
devise_ldap_authenticatable-0.4.1.1 test/rails_app/config/ldap.yml
devise_ldap_authenticatable-0.4.1 test/rails_app/config/ldap.yml