-
Notifications
You must be signed in to change notification settings - Fork 0
/
fastly.toml
55 lines (39 loc) · 1.52 KB
/
fastly.toml
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
# This file describes a Fastly Compute@Edge package. To learn more visit:
# https://developer.fastly.com/reference/fastly-toml/
authors = [""]
description = "A simple template demonstrating basic usage of the PerimeterX/Human Security Fastly JS Edge library"
language = "javascript"
manifest_version = 2
name = "perimeterx-fastly-js-edge-template"
service_id = ""
[scripts]
build = "npm run build"
[setup]
[setup.backends]
[setup.backends.origin]
address = "{{origin}}"
description = "The origin server"
[setup.backends.human_sapi]
address = "sapi-{{app_id}}.perimeterx.net"
description = "The Human Score API backend"
[setup.backends.human_collector]
address = "collector-{{app_id}}.perimeterx.net"
description = "The Human Collector backend"
[setup.backends.human_client]
address = "client.perimeterx.net"
description = "The Human backend that serves the client sensor"
[setup.backends.human_captcha]
address = "captcha.px-cdn.net"
description = "The Human backend that serves the captcha script"
[local_server]
[local_server.backends]
[local_server.backends.origin]
url = "{{origin}}"
[local_server.backends.human_sapi]
url = "https://sapi-{{app_id}}.perimeterx.net"
[local_server.backends.human_collector]
url = "https://collector-{{app_id}}.perimeterx.net"
[local_server.backends.human_client]
url = "https://client.perimeterx.net"
[local_server.backends.human_captcha]
url = "https://captcha.px-cdn.net"