-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfastly.toml
More file actions
34 lines (25 loc) · 897 Bytes
/
fastly.toml
File metadata and controls
34 lines (25 loc) · 897 Bytes
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
# This file describes a Fastly Compute package. To learn more visit:
# https://www.fastly.com/documentation/reference/compute/fastly-toml
authors = ["your@email.com"]
description = "Queue-it connector for Fastly"
language = "javascript"
manifest_version = 3
name = "connector-fastly"
service_id = "{YourServiceId}"
[local_server]
[local_server.backends]
[local_server.backends."queue-it"]
url = "{YourQueueItBackendUrl}"
[local_server.backends.origin]
url = "{YourOriginUrl}"
[local_server.config_stores]
[local_server.config_stores.IntegrationConfiguration]
format = "inline-toml"
[local_server.config_stores.IntegrationConfiguration.contents]
customerId = "{YourCustomerId}"
apiKey = "{YourApiKey}"
secret = "{YourSecretKey}"
queueItOrigin = "queue-it"
workerHost = ""
[scripts]
build = "npm run bundle"