2018-08-10 21:10:48 +00:00
|
|
|
import * as plugins from './smartnginx.plugins';
|
2016-07-06 04:33:31 +00:00
|
|
|
|
2016-07-24 23:54:36 +00:00
|
|
|
// directories
|
2018-08-10 21:10:48 +00:00
|
|
|
export let packageBase = plugins.path.join(__dirname, '../');
|
|
|
|
export let nginxConfigBase = plugins.path.join(packageBase, 'nginxconfig');
|
|
|
|
|
|
|
|
export let nginxHostFileBase = plugins.path.join(nginxConfigBase, 'hosts');
|
|
|
|
export let nginxCertBase = plugins.path.join(nginxConfigBase, 'cert');
|
2016-07-24 23:54:36 +00:00
|
|
|
|
|
|
|
// files
|
2018-08-10 21:10:48 +00:00
|
|
|
export let nginxConfFile = plugins.path.join(nginxConfigBase, 'nginx.conf');
|