-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathskeet-cloud.config.json
43 lines (43 loc) · 1.09 KB
/
skeet-cloud.config.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
{
"app": {
"name": "skeet-solana-mobile-stack",
"projectId": "skeet-solana-mobile-stack",
"fbProjectId": "skeet-solana-mobile-stack",
"region": "europe-west6",
"template": "Solana Mobile Stack (Expo) + Web (Next.js) - Firestore",
"appDomain": "",
"lbDomain": "",
"secretKeys": [],
"hasLoadBalancer": false
},
"cloudArmor": [
{
"securityPolicyName": "skeet-skeet-solana-mobile-stack-armor",
"rules": [
{
"priority": "10",
"description": "Allow Your Home IP addresses",
"options": {
"src-ip-ranges": "x.x.x.x",
"action": "allow"
}
},
{
"priority": "300",
"description": "Defense from NodeJS attack",
"options": {
"action": "deny-403",
"expression": "evaluatePreconfiguredExpr('nodejs-v33-stable')"
}
},
{
"priority": "2147483647",
"description": "Deny All IP addresses",
"options": {
"action": "deny-403"
}
}
]
}
]
}