Sha256: 421119f38a0191e18416f278a0e7a39036ab958def8fba1a43856a51bed36ecb

Contents?: true

Size: 792 Bytes

Versions: 6

Compression:

Stored size: 792 Bytes

Contents

# simple 
ldap_options:
  host: 1.2.3.4
  port: 3268
  base: dc=example,dc=com
  auth:
    method: :simple
    username: myusername
    password: mysecretpassword

# redundant: 1 directory with 2 redundant servers
ldap_options:
  hosts: 
    - [1.2.3.4, 3269]
    - [5.6.7.8, 3269]
  encryption: :simple_tls
  base: dc=example,dc=com
  auth:
    method: :simple
    username: myusername
    password: mysecretpassword

# multiple directories
ldap_options:
  - host: 1.2.3.4
    port: 3268
    base: dc=example,dc=com
    auth:
      method: :simple
      username: myusername
      password: mysecretpassword
  - host: 5.6.7.8
    port: 3269
    base: dc=example,dc=com
    encryption: :simple_tls
    auth:
      method: :simple
      username: myusername
      password: mysecretpassword


Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wobauth-6.0.1 config/ldap.yml.example
wobauth-6.0.0 config/ldap.yml.example
wobauth-5.1.3 config/ldap.yml.example
wobauth-5.1.2 config/ldap.yml.example
wobauth-5.1.1 config/ldap.yml.example
wobauth-5.1.0 config/ldap.yml.example