-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.json
More file actions
56 lines (56 loc) · 1.87 KB
/
conf.json
File metadata and controls
56 lines (56 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"commander": {
"password": "hellohello123"
},
"instance": {
"port": 3128,
"scaling": {
"min": 1,
"max": 2
}
},
"providers": [
{
"type": "awsec2",
"accessKeyId": "YOUR ACCESS KEY ID",
"secretAccessKey": "YOUR SECRET ACCESS KEY",
"region": "YOUR REGION (could be: eu-west-1)",
"instance": {
"InstanceType": "t1.micro",
"ImageId": "ami-c74d0db4",
"SecurityGroups": [
"forward-proxy"
]
}
},
{
"type": "ovhcloud",
"endpoint": "YOUR ENDPOINT (could be: ovh-eu)",
"appKey": "YOUR APP KEY",
"appSecret": "YOUR APP SECRET",
"consumerKey": "YOUR CONSUMER KEY",
"serviceId": "YOUR SERVICE ID",
"region": "YOUR REGION (could be: BHS1, GRA1 or SBG1)",
"sshKeyName": "YOUR SSH KEY (could be: mykey)",
"flavorName": "vps-ssd-1",
"snapshotName": "YOUR SNAPSHOT NAME (could be: forward-proxy)"
},
{
"type": "digitalocean",
"token": "YOUR PERSONAL TOKEN",
"region": "YOUR REGION (could be: lon1)",
"size": "s-1vcpu-1gb",
"sshKeyName": "YOUR SSH KEY (could be: mykey)",
"imageName": "YOUR SNAPSHOT NAME (could be: forward-proxy)",
"tags": "YOUR TAGS SEPARATED BY A COMMA (could be: proxy,instance)"
},
{
"type": "vscale",
"token": "YOUR PERSONAL TOKEN",
"region": "YOUR REGION (could be: msk0, spb0)",
"imageName": "YOUR SNAPSHOT NAME (could be: forward-proxy)",
"sshKeyName": "YOUR SSH KEY (could be: mykey)",
"plan": "YOUR PLAN (could be: small)"
}
]
}