2
0
mirror of https://github.com/therootcompany/greenlock.js.git synced 2025-03-06 08:40:41 +00:00
greenlock.js/tests/config.js
2015-12-13 06:39:37 +00:00

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']
};