Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
80248c77d0 | |||
f592150646 |
@ -1,5 +1,8 @@
|
|||||||
{
|
{
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
|
},
|
||||||
|
"npmdocker": {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "smartnginx",
|
"name": "smartnginx",
|
||||||
"version": "2.0.3",
|
"version": "2.0.4",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartnginx",
|
"name": "@pushrocks/smartnginx",
|
||||||
"version": "2.0.3",
|
"version": "2.0.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "control nginx from node, TypeScript ready",
|
"description": "control nginx from node, TypeScript ready",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
import * as plugins from './smartnginx.plugins';
|
import * as plugins from './smartnginx.plugins';
|
||||||
|
|
||||||
export class CertHandler {
|
export class CertHandler {
|
||||||
|
private _readyDeferred = plugins.smartpromise.defer();
|
||||||
|
certHandlerReady = this._readyDeferred.promise;
|
||||||
|
constructor() {} // nothing to do here for now
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ensure a cert is at the right location
|
||||||
|
* @param hostName
|
||||||
|
*/
|
||||||
|
async ensureCertForHost(hostName) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
@ -26,10 +26,22 @@ export class SmartNginx {
|
|||||||
* add a host
|
* add a host
|
||||||
* @param nginxHostArg
|
* @param nginxHostArg
|
||||||
*/
|
*/
|
||||||
addHost(nginxHostArg: NginxHost) {
|
addHost(hostNameArg: string, destinationIp: string): NginxHost {
|
||||||
this.hosts.push(nginxHostArg);
|
const nginxHost = new NginxHost(this, {
|
||||||
|
hostName: hostNameArg,
|
||||||
|
destination: destinationIp
|
||||||
|
})
|
||||||
|
this.hosts.push(nginxHost);
|
||||||
|
return nginxHost;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getNginxHostByHostName(hostNameArg: string): NginxHost {
|
||||||
|
return this.hosts.find(nginxHost => {
|
||||||
|
return nginxHost.hostName === hostNameArg;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* listHosts
|
* listHosts
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user