mirror of
				https://github.com/therootcompany/greenlock.js.git
				synced 2024-11-16 17:29:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			379 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			379 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
 | 
						|
var pkg = require('./package.json');
 | 
						|
module.exports = require('@root/greenlock').create({
 | 
						|
    // name & version for ACME client user agent
 | 
						|
    packageAgent: pkg.name + '/' + pkg.version,
 | 
						|
 | 
						|
    // contact for security and critical bug notices
 | 
						|
    //maintainerEmail: pkg.author,
 | 
						|
 | 
						|
    // where to find .greenlockrc and set default paths
 | 
						|
    packageRoot: __dirname
 | 
						|
});
 |