-
Notifications
You must be signed in to change notification settings - Fork 0
/
edgio.config.js
58 lines (49 loc) · 2.31 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// 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: "inquirer",
// The name of the team in Edgio to which this app should be deployed.
team: 'pie-us',
// Overrides the default path to the routes file. The path should be relative to the root of your app.
// routes: 'routes.js',
origins: [
{
// The name of the backend origin
name: "origin",
// Uncomment the following to override the host header sent from the browser when connecting to the origin
override_host_header: 'www.inquirer.net',
// The list of origin hosts to which to connect
hosts: [
{
// The domain name or IP address of the origin serve r
location: "www.inquirer.net",
},
],
// Uncomment the following to configure a shield
// shields: { us_east: 'DCD' },
},
],
// Options for hosting serverless functions on Edgio
// serverless: {
// // Set to true to include all packages listed in the dependencies property of package.json when deploying to Edgio.
// // This option generally isn't needed as Edgio automatically includes all modules imported by your code in the bundle that
// // is uploaded during deployment
// includeNodeModules: true,
//
// // Include additional paths that are dynamically loaded by your app at runtime here when building the serverless bundle.
// include: ['views/**/*'],
// },
// The maximum number of URLs that will be concurrently prerendered during deployment when static prerendering is enabled.
// Defaults to 200, which is the maximum allowed value.
// prerenderConcurrency: 200,
// A list of glob patterns identifying which source files should be uploaded when running edgio deploy --includeSources.
// This option is primarily used to share source code with Edgio support personnel for the purpose of debugging. If omitted,
// edgio deploy --includeSources will result in all files which are not gitignored being uploaded to Edgio.
//
// sources : [
// '**/*', // include all files
// '!(**/secrets/**/*)', // except everything in the secrets directory
// ],
};