File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ httpAdminMiddleware
68
68
// Be sure to call next() if the request should be passed on
69
69
}
70
70
71
+ httpAdminCookieOptions
72
+ : when Admin Autentication is enabled, this can be used to customise the options used
73
+ when setting the session cookie used as part of the OAuth authentication flow.
74
+ The available options are documented [ here] ( https://www.npmjs.com/package/cookie#options-1 ) .
75
+
71
76
httpNodeRoot
72
77
: the root url for nodes that provide HTTP endpoints. If set to ` false ` , all node-based HTTP endpoints are disabled. Default: ` / `
73
78
@@ -93,25 +98,30 @@ httpStatic
93
98
94
99
This property can also be set as an Array to support multiple static directories, each
95
100
with its own set of options. The options include the path to the local directory to serve
96
- content from, the root url to serve them from and an optional custom middleware function.
101
+ content from, the root url to serve them from, an optional custom middleware function and an
102
+ optional CORS configuration.
97
103
98
104
For example:
99
105
100
106
httpStatic: [
101
107
{
102
108
path: '/opt/static/',
103
109
root: '/private/',
104
- middleware: myCustomHttpMiddleware
110
+ middleware: myCustomHttpMiddleware,
111
+ cors: {
112
+
113
+ }
105
114
}
106
115
]
107
116
108
117
* Standalone only* .
109
118
110
-
111
-
112
119
httpStaticAuth
113
120
: enabled HTTP Basic Authentication on the static content. See ` httpAdminAuth ` for format.
114
121
122
+ httpStaticCors
123
+ : enables cross-origin resource sharing for the httpStatic endpoints as defined [ here] ( https://github.com/troygoode/node-cors#configuration-options )
124
+
115
125
httpNodeCors
116
126
: enables cross-origin resource sharing for the nodes that provide HTTP endpoints,
117
127
as defined [ here] ( https://github.com/troygoode/node-cors#configuration-options )
You can’t perform that action at this time.
0 commit comments