-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
38 lines (38 loc) · 1.04 KB
/
config.json
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
{
"devmode": "debug",
"documentRoot": "./www/",
"relativeImportPath": "js/packages/",
"basePath": ".",
"projectPath": ".",
"domain": "0.0.0.0",
"dataPath": "./data/",
"private-cert-pem": "./fullchain.pem",
"private-key-pem": "./privkey.pem",
"backend": {
"routes": [{
"name": "OpenAPI3.JSON",
"description": "Open API v3 JSON",
"path": "^/openapi.json$",
"microservice": "org.quickcorp.backend.openapi.json"
},
{
"name": "OpenAPI3.YAML",
"description": "Open API v3 YAML",
"path": "^/openapi.yaml$",
"microservice": "org.quickcorp.backend.openapi.yaml"
},
{
"path": "^/node_modules.*$",
"microservice": "com.qcobjects.sdk.forbidden"
},
{
"name": "Static Files",
"description": "Static Files Microservice",
"path": "^/plugins/(.*)$",
"microservice": "com.qcobjects.backend.microservice.static",
"redirect_to":"./plugins/$1",
"supported_methods": ["GET"]
}
]
}
}