A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.
Go to file
2016-07-08 03:36:51 +02:00
dist start storing configs to FS 2016-07-08 03:36:51 +02:00
nginxconfig imrpove README 2016-07-06 06:33:38 +02:00
test now includes snippets 2016-07-06 08:30:33 +02:00
ts start storing configs to FS 2016-07-08 03:36:51 +02:00
.gitignore initial 2016-07-06 03:14:44 +02:00
.gitlab-ci.yml add gitlab ci 2016-07-06 03:17:45 +02:00
package.json start storing configs to FS 2016-07-08 03:36:51 +02:00
README.md imrpove README 2016-07-06 06:33:38 +02:00

smartnginx

control nginx from node, TypeScript ready

Status

build status

Usage

We recommend the use of TypeScript! :)

import * as smartnginx from "smartnginx";
myNginxConfig = new smartnginx.NginxConfig();
myNginxZone = new smartnginx.NginxZone({
    zoneName:"some.example.com",
    type:"reverseProxy",
    destination:"192.192.192.192" // some destination IP
});
myNginxConfig.addZone(myNginxZone); // adds the zone to the config
myNginxConfig.deploy(); // deploys the referenced NginxConfig and restarts nginx