An open API service indexing awesome lists of open source software.

https://github.com/runnable/node-proxy

A Simple Node.js HTTP Proxy.
https://github.com/runnable/node-proxy

Last synced: 8 months ago
JSON representation

A Simple Node.js HTTP Proxy.

Awesome Lists containing this project

README

          

# node-proxy

## Overview

- Simple HTTP proxy written in node
- Listens on `process.env.PORT` (default: `3000`)
- Requests are passed to: `process.env.ORIGIN_HOST:process.env.ORIGIN_PORT`
- Logs proxy requests and responses via [bunyan](https://github.com/trentm/node-bunyan)

## Container Details

- Stack Type / Version: Node.js `>= 4`
- Packages: *none*
- Build Commands: `npm install`
- Container CMD: `npm start`

## Container Environment
```
# Host to the origin (content) server for the proxy
ORIGIN_HOST=

# Port to of the origin server
ORIGIN_PORT=
```