forked from LunaNode/lobster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlobster.example.cfg.json
62 lines (62 loc) · 1.07 KB
/
lobster.example.cfg.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"splash_routes":
{
"/": "index",
"/about": "about",
"/pricing": "pricing",
"/contact": "contact",
"/terms": "terms",
"/privacy": "privacy"
},
"vm":
[
{
"name": "Moon",
"type": "openstack",
"url": "http://controller:35357/v2.0",
"username": "lobster",
"password": "lobster123",
"tenant": "Lobster",
"network_id": "b169ba21-5ce1-4ff8-9cb5-0e12d3e1adb4"
},
{
"name": "Mars",
"type": "solusvm",
"virt_type": "openvz",
"node_group": "1",
"url": "https://example.com:5656/api/admin/command.php",
"api_id": "123",
"api_key": "abcdef"
}
],
"payment":
[
{
"name": "Paypal",
"type": "paypal",
"business": "[email protected]",
"return_url": "https://example.com/"
},
{
"name": "Bitcoin",
"type": "coinbase",
"callback_secret": "random",
"api_key": "123",
"api_secret": "abcdef"
},
{
"name": "Stripe",
"type": "stripe",
"publishable_key": "pk_live_abc",
"private_key": "sk_live_abc"
}
],
"module":
[
{
"type": "whmcs",
"ip": "127.0.0.1",
"secret": "random"
}
]
}