UNPKG

@lando/lemp

Version:

A Lando plugin that provides a tight integration with lemp.

16 lines (13 loc) 385 B
'use strict'; const _ = require('lodash'); const PhpNginx = require('@lando/php/builders/php-nginx.js'); // Builder module.exports = { name: 'lemp-nginx', parent: '_webserver', builder: parent => class LempNginx extends PhpNginx.builder(parent, PhpNginx.config) { constructor(id, options = {}) { super(id, options, {services: _.set({}, options.name)}); } }, };