mirror of
				https://github.com/therootcompany/greenlock.js.git
				synced 2024-11-16 17:29:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			415 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			415 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var path = require('path');
 | |
| 
 | |
| module.exports = {
 | |
|   server: "https://acme-staging.api.letsencrypt.org/directory"
 | |
| , tlsSni01Port: 5001
 | |
| , http01Port: 80
 | |
| , webrootPath: path.join(__dirname, "acme-challenge")
 | |
| , configDir: path.join(__dirname, "letsencrypt.config")
 | |
| , workDir: path.join(__dirname, "letsencrypt.work")
 | |
| , logsDir: path.join(__dirname, "letsencrypt.logs")
 | |
| , allowedDomains: ['example.com']
 | |
| };
 |