2016-06-22 11:22:09 +00:00
|
|
|
import * as plugins from "./cert.plugins";
|
2016-06-18 13:59:03 +00:00
|
|
|
|
2016-07-22 00:11:04 +00:00
|
|
|
//dirs
|
|
|
|
export let certDir = plugins.path.join(__dirname,"assets/certs");
|
|
|
|
export let defaultSslDir = plugins.path.join(__dirname,"assets/defaultSslDir");
|
|
|
|
export let assetDir = plugins.path.join(__dirname,"assets/");
|
|
|
|
export let accountsDir = plugins.path.join(__dirname,"assets/accounts/");
|
|
|
|
|
2016-07-04 06:41:58 +00:00
|
|
|
// files
|
2016-06-22 11:22:09 +00:00
|
|
|
export let certHook = plugins.path.join(__dirname,"cert.hook.js");
|
|
|
|
export let config = plugins.path.join(__dirname,"assets/config.json");
|
2016-07-04 06:41:58 +00:00
|
|
|
export let leShConfig = plugins.path.join(__dirname,"assets/leshconfig.json");
|
2016-06-22 11:22:09 +00:00
|
|
|
export let letsencryptSh = plugins.path.join(__dirname,"assets/letsencrypt.sh");
|
2016-07-04 06:41:58 +00:00
|
|
|
|