-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.sample.php
More file actions
41 lines (39 loc) · 1.06 KB
/
config.sample.php
File metadata and controls
41 lines (39 loc) · 1.06 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
<?php
$_CONFIG = [
'name' => '', // site login name
'pass' => '', // site password [password hash format]
'apiname' => '', // API name
'apipass' => '', // API password
'email' => '', // e-mail for notifications (to)
'from' => '', // e-mail for notifications (from)
'blocked' => [], // blocked domain for renewal [array]
'external' => [], // external domains [array of array]
'fakturoid' => [] // fakturoid api
];
/*
External domains example:
'external' => [
[
'name' => '', // domain name
'expiration' => '', // domain expiration (format YYYY-MM-DD)
'note' => '' // note
],[
'name' => '',
'expiration' => '',
'note' => ''
]
]
*/
/*
Fakturoid example:
'fakturoid' => [
'id' => '', // fakturoid auth id
'secret' => '', // fakturoid auth secret
'slug' => '', // name of fakturoid account (slug)
'app' => 'Domainator <email@domain.cz>', // app name (can be anything) + e-mail
'invoices' => [
'domena.cz' => '123456', // domain name, invoice id (not number)
'domena.eu' => '123456'
]
]
*/