2
0
mirror of https://github.com/therootcompany/greenlock.js.git synced 2025-03-06 08:40:41 +00:00
greenlock.js/bin/tmpl/greenlock.tmpl.js

14 lines
379 B
JavaScript
Raw Normal View History

2019-11-05 00:01:31 -07:00
'use strict';
2019-11-05 02:50:27 -07:00
var pkg = require('./package.json');
module.exports = require('@root/greenlock').create({
2019-11-05 00:01:31 -07:00
// name & version for ACME client user agent
2019-11-05 02:50:27 -07:00
packageAgent: pkg.name + '/' + pkg.version,
2019-11-05 00:01:31 -07:00
// contact for security and critical bug notices
2019-11-18 22:55:29 -07:00
//maintainerEmail: pkg.author,
2019-11-05 00:01:31 -07:00
2019-11-05 02:50:27 -07:00
// where to find .greenlockrc and set default paths
packageRoot: __dirname
});