-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedgio.config.js
38 lines (37 loc) · 986 Bytes
/
edgio.config.js
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
// This file was automatically added by edgio init.
// You should commit this file to source control.
// Learn more about this file at https://docs.edg.io/guides/edgio_config
module.exports = {
// The name of the site in Edgio to which this app should be deployed.
name: 'edgio-v7-image-optimization-example',
origins: [
{
name: 'wiki',
override_host_header: 'en.wikipedia.org',
hosts: [
{
location: 'en.wikipedia.org',
},
],
tls_verify: {
use_sni: true,
allow_self_signed_certs: true,
sni_hint_and_strict_san_check: 'en.wikipedia.org',
},
},
{
name: 'wikiupload',
override_host_header: 'upload.wikimedia.org',
hosts: [
{
location: 'upload.wikimedia.org',
},
],
tls_verify: {
use_sni: true,
allow_self_signed_certs: true,
sni_hint_and_strict_san_check: 'upload.wikimedia.org',
},
},
],
};