TLS option for self service
This commit is contained in:
parent
d6482b6e05
commit
42cb28822e
|
@ -258,6 +258,9 @@ class selfServiceProfile {
|
||||||
/** server address */
|
/** server address */
|
||||||
public $serverURL;
|
public $serverURL;
|
||||||
|
|
||||||
|
/** use TLS */
|
||||||
|
public $useTLS;
|
||||||
|
|
||||||
/** LDAP suffix */
|
/** LDAP suffix */
|
||||||
public $LDAPSuffix;
|
public $LDAPSuffix;
|
||||||
|
|
||||||
|
@ -302,6 +305,7 @@ class selfServiceProfile {
|
||||||
function __construct() {
|
function __construct() {
|
||||||
// set default values
|
// set default values
|
||||||
$this->serverURL = "localhost";
|
$this->serverURL = "localhost";
|
||||||
|
$this->useTLS = false;
|
||||||
$this->LDAPSuffix = "dc=my-domain,dc=com";
|
$this->LDAPSuffix = "dc=my-domain,dc=com";
|
||||||
$this->LDAPUser = "";
|
$this->LDAPUser = "";
|
||||||
$this->LDAPPassword = "";
|
$this->LDAPPassword = "";
|
||||||
|
|
Loading…
Reference in New Issue