2016-07-06 04:33:31 +00:00
|
|
|
import * as plugins from "./smartnginx.plugins"
|
|
|
|
|
2016-07-24 23:54:36 +00:00
|
|
|
// directories
|
2016-07-06 04:33:31 +00:00
|
|
|
export let packageBase = plugins.path.join(__dirname,"../");
|
2016-07-12 21:11:57 +00:00
|
|
|
export let nginxConfigBase = plugins.path.join(packageBase,"nginxconfig");
|
|
|
|
export let nginxZoneBase = plugins.path.join(nginxConfigBase,"zones");
|
2016-07-24 23:54:36 +00:00
|
|
|
export let nginxCertBase = plugins.path.join(nginxConfigBase,"cert");
|
|
|
|
|
|
|
|
// files
|
|
|
|
export let nginxConfFile = plugins.path.join(nginxConfigBase,"nginx.conf");
|