53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| error_reporting(E_ALL & ~E_NOTICE);
 | |
| 
 | |
| include_once('include/JWT/JWT.php');
 | |
| 
 | |
| return (object) array(
 | |
| 	'LDAP'	=> [
 | |
| 		'Server'	=> 'server.domain.tld',
 | |
| 		// FQDN of the LDAP-server
 | |
| 		'Port'		=> 389,
 | |
| 		// Port of the LDAP-server; default port is 389
 | |
| 		'BaseDN'	=> 'OU=Users,DC=domain,DC=tld',
 | |
| 		// Location of your useraccounts
 | |
| 		// Syntax:
 | |
| 		//   'OU=container,DC=domain,DC=tld'
 | |
| 		'Domain'	=> 'domain'
 | |
| 		// Specify the NetBios name of the domain; to allow users to log on with just their usernames.
 | |
| 	],
 | |
| 
 | |
| 	'Sqlite'	=> [
 | |
| 		'Path'	=> '../data/lucidAuth.sqlite.db'
 | |
| 		// Relative path to the location where the database should be stored
 | |
| 	],
 | |
| 
 | |
| 	'JWT'	=> [
 | |
| 		'PrivateKey_base64'	=> '',
 | |
| 		// A base64-encoded random (preferably long) string (see https://www.base64encode.org/)
 | |
| 		'Algorithm'			=> [
 | |
| 			'HS256',
 | |
| 		]
 | |
| 	],
 | |
| 
 | |
| 	'Session'	=> [
 | |
| 		'Duration'					=> 2592000,
 | |
| 		// In seconds (2592000 is equivalent to 30 days)
 | |
| 		'CrossDomainLogin'	=> False,
 | |
| 		// Set this to True if SingleSignOn (albeit rudementary) is desired
 | |
| 		//   (cookies are inheritently unaware of each other; clearing cookies for one domain does not affect other domains)
 | |
| 		'CookieDomains'	=> [
 | |
| 			'domain1.tld' #, 'domain2.tld', 'subdomain.domain3.tld'
 | |
| 		]
 | |
| 		// Domain(s) that will be used to set cookie-domains to
 | |
| 		//   (multiple domains are allowed; remove the '#' above)
 | |
| 	],
 | |
| 
 | |
| 	'Debug'	=> [
 | |
| 		'Verbose'		=> False,
 | |
| 		'LogToFile'	=> False
 | |
| 	]
 | |
| );
 | |
| 
 | |
| ?> |