Sha256: c4d340ae1679a47d1e44ac66d2550702584a96eb35cec3499c84c6abefc1ba3d

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

Adauth.configure do |c|
	# The Domain name of your Domain
	#
	# This is usually my_company.com or my_company.local
	#
	# If you don't know your domain contact your IT support,
	# it will be the DNS suffix applied to your machines
	c.domain = "example.com" 
	
	# The IP address or Hostname of a DC (Domain Controller) on your network
	#
	# This could be anything and probably wont be 127.0.0.1
	#
	# Again contact your IT Support if you can't work this out
	c.server = "127.0.0.1"
	
	# The LDAP base of your domain/intended users
	#
	# For all users in your domain the base would be:
	# dc=example, dc=com
	# OUs can be prepeneded to restrict access to your app
	c.base = "dc=example, dc=com"
	
	# The port isn't always needed as Adauth defaults to 389 the LDAP Port
	#
	# If your DC is on the other side of a firewall you may need to change the port
	#c.port = 389
	
	# Windows Security groups to allow
	#
	# Only allow members of set windows security groups to login
	# 
	# Takes an array for group names
	#c.allowed_groups = ["Group1", "Group2"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
adauth-1.0.0 lib/generators/adauth/config/templates/config.rb.erb
adauth-1.0.0pre lib/generators/adauth/config/templates/config.rb.erb
adauth-0.1.0 lib/generators/adauth/config/templates/config.rb.erb