diff --git a/builders/_drupaly.js b/builders/_drupaly.js index ae57bb0..71bf1f0 100644 --- a/builders/_drupaly.js +++ b/builders/_drupaly.js @@ -189,12 +189,8 @@ const getDbTooling = database => { const getProxy = (options, proxyService = 'appserver') => { // get any intial proxy stuff for proxyService const urls = _.get(options, `_app.config.proxy.${proxyService}`, []); - - // if urls doesn't have the lando generated domain, add it in - if (!_.find(urls, {hostname: `${options.app}.${options._app._config.domain}`})) { - urls.push({hostname: `${options.app}.${options._app._config.domain}`}); - } - + // add + urls.push(`${options.app}.${options._app._config.domain}`); // return return {[proxyService]: _.uniq(_.compact(urls))}; };