1cca4f95bc7cfb42566c92f8d334495776a32c2b
				
			
			
		
	smartnginx
control nginx from node, TypeScript ready
Status
Features
- easy reverse configuration
- automatic letsencrypt DNS01 challenge based ssl cert generation
- automatic nginx process handling zero-downtime config reloading
- works in Docker environements
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 gracefully reloads it
Description
				A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.
						
						
						
					Languages
				
				
								
								
									TypeScript
								
								100%