Coder Social home page Coder Social logo

nodeginx's Introduction

nodeginx

A helper library for managing Nginx virtual host configs and the nginx process. This assumes you are using the sites-available and sites-enabled setup, where those directories are arranged as so,

/etc
|-- nginx
     |-- nginx.config
     |-- sites-enabled
     |    +-- site-two
     +-- sites-available
          |-- site-one
          +-- site-two

server blocks are setup in the sites-available directory and are "turned on" by creating a symbolic link to the sites-enabled directory. In the example above, site-one and site-two are setup but only site-two is served by nginx.

Installation

This is a scoped NPM package, Node.js is a prerequisite.

$ npm install -g @makenova/nodeginx

Use

This can be used as a standalone module but was made to be used through nodeginx-cli.

var nodeginx = require('@makenova/nodeginx')

const staticSiteObj = {
  askAddSite: 'use static template',
  tplPort: '80',
  tplServerName: 'panda',
  tplSiteRoot: '/home/user/panda'
}

nodeginx.addStaticSite(staticSiteObj, function (err, message) {
  if (err) throw(err)
  console.log(message) // => panda config file will be added to /etc/nginx/sites-available
})

API

nodeginx.addStaticSite(siteObj, cb)

Add a static site to the sites-available directory. The callback(cb) returns an error err and a message.

The siteObj should have the following properties:

siteObj.port

nubmer : 80 the port that the site should be served on

siteObj.serverName

string : 'panda' the name of the site

siteObj.siteRoot

string : '/home/user/panda' The absolute path to the site

nodeginx.addProxySite(siteObj, cb)

Add a proxy site to the sites-available directory. The callback(cb) returns an error err and a message.

The siteObj should have the following properties:

siteObj.port

nubmer : 80 the port that the site should be served on

siteObj.serverName

string : 'panda' the name of the site

siteObj.proxyServerIp

string : '127.0.0.1' The IP address of the server where the site is running

siteObj.proxyServerPort

string : '8080' The port that the application is running on

nodeginx.addSiteFromUserFile(siteObj, cb)

Add a site from a users config file. The file will be copied to the sites-available directory.

siteObj.path

string : '/home/user/panda' An absolute path to the config file

nodeginx.removeSite(siteName, cb)

Remove a site from the sites-available directory. If the site is enabled i.e. has a symbolic link in the sites-enabled directory, the symbolic link will be removed first. The callback(cb) only returns an err.

nodeginx.enableSite(siteName, cb)

Enable a site. All this does is create a symlink of a site in the sites-available directory to the sites-enabled directory.

nodeginx.disableSite(siteName, cb)

Disable a site. Delete a symlink of a site from the sites-enabled directory.

nodeginx.manageNginx(action, cb)

Start, stop, reload, etc. nginx

nodeginx.constants

An object with useful constants

  • NGINX_PATH - the nginx.conf location, defaults to '/etc/nginx'
  • sitesAvailableStr - the name of the sites-available directory
  • sitesEnabledStr - the name of the sites-enabled directory

Bugs

Please report any bugs to: https://github.com/makenova/nodeginx/issues

License

Licensed under the MIT License: https://opensource.org/licenses/MIT

nodeginx's People

Contributors

makenova avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.