Cleanup some small config details

Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
This commit is contained in:
Diederik de Groot
2020-02-17 02:46:15 +01:00
parent 8950fb92f8
commit cc3ee10aaa
2 changed files with 37 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
[main] [main]
debug = on ; The output in the browser window for more information debug = TRUE ; The output in the browser window for more information
cache_filename = "/tmp/provision_sccp_resolver.cache" cache_filename = "/tmp/provision_sccp_resolver.cache"
default_language = English_United_States default_language = English_United_States
log_type = SYSLOG ; SYSLOG|STDERR|STDOUT|NULL|FILE log_type = SYSLOG ; SYSLOG|STDERR|STDOUT|NULL|FILE
@@ -10,10 +10,10 @@ auto_sign = FALSE
auto_encrypt = FALSE auto_encrypt = FALSE
[security] [security]
cert_ca = cert_ca = NULL
cert_priv = cert_priv = NULL
cert_pub = cert_pub = NULL
hash = hash = NULL
[subdirs] [subdirs]
tftproot = tftpboot tftproot = tftpboot
@@ -44,12 +44,12 @@ locale.country=United_States
locale.language = English_United_States locale.language = English_United_States
locale.langcode = en_US locale.langcode = en_US
locale.charset = utf-8 locale.charset = utf-8
urls.secury = FALSE urls.security = FALSE
urls.information= urls.information = NULL
urls.authentication= urls.authentication = NULL
urls.services= urls.services = NULL
urls.direcory= urls.direcory = NULL
urls.messages= urls.messages = NULL
urls.proxyserver= urls.proxyserver = NULL
;vpn. ;vpn.
;phoneservices. ;phoneservices.

View File

@@ -5,10 +5,10 @@ include_once("utils.php");
$base_path = !empty($_SERVER['DOCUMENT_ROOT']) ? realpath($_SERVER['DOCUMENT_ROOT'] . "/../"): realpath(getcwd()."/../"); $base_path = !empty($_SERVER['DOCUMENT_ROOT']) ? realpath($_SERVER['DOCUMENT_ROOT'] . "/../"): realpath(getcwd()."/../");
$base_config = Array( $base_config = Array(
'main' => Array( 'main' => Array(
'debug' => 1, 'debug' => TRUE,
'default_language' => 'English_United_States', 'default_language' => 'English_United_States',
'log_type' => "NULL", 'log_type' => "NULL",
'log_level' => LOG_EMERG 'log_level' => 'LOG_EMERG'
), ),
'subdirs' => Array( 'subdirs' => Array(
'tftproot' => 'tftpboot', 'tftproot' => 'tftpboot',
@@ -18,13 +18,13 @@ $base_config = Array(
'ringtones' => 'ringtones', 'ringtones' => 'ringtones',
'locales' => 'locales', 'locales' => 'locales',
'countries' => 'countries', 'countries' => 'countries',
'languages' => 'languages', 'languages' => 'languages'
), ),
'security' => Array( 'security' => Array(
'cert_ca' => null, 'cert_ca' => NULL,
'cert_priv' => null, 'cert_priv' => NULL,
'cert_pub' => null, 'cert_pub' => NULL,
'hash' => null, 'hash' => NULL
), ),
'settings' => Array( 'settings' => Array(
'sshUserId' => 'cisco', 'sshUserId' => 'cisco',
@@ -34,30 +34,30 @@ $base_config = Array(
'template' => 'M/D/YA', 'template' => 'M/D/YA',
'timezone' => 'W. Europe Standard/Daylight Time', 'timezone' => 'W. Europe Standard/Daylight Time',
'ipaddress' => '10.x.x.x', 'ipaddress' => '10.x.x.x',
'mode' => 'Unicast', 'mode' => 'Unicast'
), ),
'members' => Array( 'members' => Array(
'myhost' => Array( 'myhost' => Array(
'hostname' => 'myhost.domain.com', 'hostname' => 'myhost.domain.com',
'ipv4' => '10.x.x.x', 'ipv4' => '10.x.x.x',
'ipv6' => '2001:470::x:x', 'ipv6' => '2001:470::x:x',
'port' => '2000', 'port' => '2000'
) )
), ),
'locale' => Array( 'locale' => Array(
'country' => 'United_States', 'country' => 'United_States',
'language' => 'English_United_States', 'language' => 'English_United_States',
'langcode' => 'en_US', 'langcode' => 'en_US',
'charset' => 'utf-8', 'charset' => 'utf-8'
), ),
'urls' => Array( 'urls' => Array(
'secury' => '', 'security' => FALSE,
'information' => '', 'information' => NULL,
'authentication' => '', 'authentication' => NULL,
'services' => '', 'services' => NULL,
'direcory' => '', 'direcory' => NULL,
'messages' => '', 'messages' => NULL,
'proxyserver' => '', 'proxyserver' => NULL
) )
) )
); );