Skip to content

Commit

Permalink
Update confSrc, remove nginx.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Dec 29, 2023
1 parent 3056c35 commit a7dac1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 21 deletions.
2 changes: 1 addition & 1 deletion builders/acquia-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ module.exports = {
config: {
build: [],
composer: {},
confSrc: __dirname,
confSrc: path.resolve(__dirname, '..', 'config'),
config: {},
database: 'mysql',
defaultFiles: {
Expand Down
18 changes: 0 additions & 18 deletions builders/acquia-nginx.js

This file was deleted.

2 changes: 1 addition & 1 deletion builders/acquia-php.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ module.exports = {
parent: '_appserver',
builder: (parent, config) => class AcquiaPhp extends LandoPhp.builder(parent, LandoPhp.config) {
constructor(id, options = {}, factory) {
options = _.merge({}, config, options);
loadScripts(options);
options.nginxServiceType = 'acquia-nginx';
super(id, options, factory);
};
},
Expand Down
3 changes: 2 additions & 1 deletion builders/acquia.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

const _ = require('lodash');
const path = require('path');
const {getAcquiaPull} = require('./../lib/pull');
const {getAcquiaPush} = require('./../lib/push');
const utils = require('./../lib/utils');
Expand All @@ -11,7 +12,7 @@ module.exports = {
config: {
cache: true,
composer_version: '2',
confSrc: __dirname,
confSrc: path.resolve(__dirname, '..', 'config'),
defaultFiles: {},
drush: '8.4.8',
inbox: true,
Expand Down

0 comments on commit a7dac1e

Please sign in to comment.