-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
44 lines (36 loc) · 2.49 KB
/
config.php
File metadata and controls
44 lines (36 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
function getConfig()
{
return array(
// =========================================================================================
// Application Settings
// =========================================================================================
// Trust in Lacuna Test PKI (for development purposes only!)
"trustLacunaTestRoot" => true,
// THIS SHOULD NEVER BE USED ON A PRODUCTION ENVIRONMENT!
// -----------------------------------------------------------------------------------------
// REST PKI
// -----------------------------------------------------------------------------------------
'restPki' => [
// ====================================================
// >>>> PASTE YOUR REST PKI ACCESS TOKEN BELOW <<<<
// ====================================================
'accessToken' => 'fIykpZRLhbFJGrXP8UNxNxrjItaJ3PjaPn3U8QNsorAHR73zrSK4Nm9zuLU_Vot84GDC_xK_TaZhdGguT1j888CGRMtyWq-BBp0d-SlX2k3vxMWkCcphDdj3mkgkdEfXcbZBYFlnqUz1ncNRJlx526Vwz1RmlV27yAZc46oCFYvkp09YmG0ITJ6b5Mah6YkoSb9YgGhcN9o_VsBgxcg5NxUVNxboXpF4WHXopL-AYqdWEDBcbTHYhChkIsfVKAN8nXJs_4-Ox_9NW_5zAAlzfWdxzgoXsR7h9uJ_icCDR-Dn9g9AjtEf1f5uy3xrypJSMwSMqfLkGcz68fQlkXKCF4JCFP5ehY5N-2fIlBRUhBZk_I7y-95MQvnZvF8DjrTUQM4PrMW75wzvGFFrz3F8gxAxPvfoISdz6823jwG8mb3QXkSA8RUD_ZBkVQlycGEfA3uvF51umnd205ofe6mfsP9hCCbAAiHd7Fvo8lAlwo-VA6yPDjCWEYTtdlL8FPh0HOUcFyKLPkOXVP-rcln2TlkPKUY',
// If the REST PKI sample doesn't work, please contact our support by email: suporte@lacunasoftware.com
// Address of your Rest PKI installation (with the trailing '/' character)
"endpoint" => 'https://pki.rest/',
],
// -----------------------------------------------------------------------------------------
// Cloudhub
// -----------------------------------------------------------------------------------------
'cloudHub' => [
// ====================================================
// >>>> PASTE YOUR CLOUDHUB API KEY BELOW <<<<
// ====================================================
'apiKey' => 'mR1j0v7L12lBHnxpgxVkIdikCN9Gm89rn8I9qet3UHo=',
// If the CLOUDHUB sample doesn't work, please contact our support by email: suporte@lacunasoftware.com
// Address of your CLOUDHUB installation (with the trailing '/' character)
"endpoint" => 'https://cloudhub.lacunasoftware.com/',
],
);
}