forked from elsoul/skeet-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskeet-cloud.config.json
52 lines (52 loc) · 1.16 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
44
45
46
47
48
49
50
51
52
{
"app": {
"name": "skeet-next",
"projectId": "skeet-next",
"fbProjectId": "skeet-next",
"region": "europe-west6",
"template": "Next.js(React) - Firestore",
"appDomain": "",
"lbDomain": "",
"secretKeys": [],
"hasLoadBalancer": false
},
"cloudArmor": [
{
"securityPolicyName": "skeet-skeet-next-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"
}
}
]
}
],
"ai": {
"lang": "en",
"ais": [
{
"name": "VertexAI",
"availableModels": ["chat-bison@001", "chat-bison-32k"]
}
]
}
}