Add httpPaths support

This commit is contained in:
Girish Ramakrishnan
2020-11-18 23:25:27 -08:00
parent cde42e5f92
commit 0a3aad0205
5 changed files with 16 additions and 7 deletions

View File

@@ -465,7 +465,8 @@ function writeAppNginxConfig(app, bundle, callback) {
proxyAuth: {
enabled: app.sso && app.manifest.addons && app.manifest.addons.proxyAuth,
id: app.id
}
},
httpPaths: app.manifest.httpPaths || {}
};
var nginxConf = ejs.render(NGINX_APPCONFIG_EJS, data);