Skip to content

petar/GoReverseProxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Description

GoReverseProxy is an HTTP reverse proxy (similar to a simpler version of NGINX) whose primary purpose currently is to multiplex incoming HTTP requests to different backend servers according to virtual host, and to safeguard against malicious HTTP requests (GoReverseProxy will likely break before allowing a backend server to break).

Features

  • Pipelining
  • Keepalive connections
  • Multiplexing by virtual hosts, specified in a config file
  • File-descriptor limiting
  • Connection timeouts

Maturity

I am running GoReverseProxy in production (albeit a small production) in front of my blog Population Algorithms and it has been working fine. The blog requests are generally pretty heavy (since they pull in a lot of resource files and things). Keepalive and pipelining have been working correctly.

Nevertheless, it is still early to say that GoReverseProxy is truly production-ready.

Installation

To install, simply run

git clone git://github.com/petar/GoReverseProxy.git GoReverseProxy-git
cd GoReverseProxy-git
make
make install

There is an example config file in the subdirectory reverseproxy which is simple and self-explanatory in JSON format.

About

GoReverseProxy is maintained by Petar Maymounkov.

About

An NGINX-alike HTTP reverse proxy in Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages