-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedgio.config.js
More file actions
23 lines (23 loc) · 845 Bytes
/
edgio.config.js
File metadata and controls
23 lines (23 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
connector: '@edgio/astro',
astro: {
appPath: './dist/server/entry.mjs',
},
backends: {
// Define a domain or IP address to proxy as a backend
// More on: https://docs.edg.io/guides/edgio_config#backends
api: {
domainOrIp: 'layer0-docs-layer0-ecommmerce-api-example-default.layer0-limelight.link',
hostHeader: 'layer0-docs-layer0-ecommmerce-api-example-default.layer0-limelight.link',
// Disable backend SSL certificate security check, read more on:
// https://docs.edg.io/guides/edgio_config#:~:text=browser%20is%20used.-,disableCheckCert,-Boolean
disableCheckCert: true,
},
// More on: https://docs.edg.io/guides/image_optimization
image: {
domainOrIp: 'opt.moovweb.net',
hostHeader: 'opt.moovweb.net',
disableCheckCert: true,
},
},
}