Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

avil13/noxxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

##Noxxy : Fork Noxy (NOde proXY ) is a small proxy server allowing to use http-proxy with a JSON config file.

It allow for example to be used as a front proxy routing apps beetwen node.js, apache and nginx and support websockets.

NOXY: 80 > Apache:8080 | node:1337

installation : npm install noxy -g

Usage :

noxy --help

noxy -c myrouting.conf.json

Example configuration :

/**
* here is an example configuration for noxy (NOde proXY)
*/
{
	"server": {
		"hostname"	: "" // empty string to bind on everything
        "port": 5050
    },
    "default": { "target": "http://localhost:8080" },
    "domains": {
		// key is regular expression pattern
        ".*/dev/.*": { 
            "rm": "/dev", // remove str from url
            "target": "http://localhost:9090" 
        }
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published