fcgi

A Go net/http/cgi-like FastCGI client

BSD-3-CLAUSE License

Stars
9

Go FastCGI client

A FastCGI client for web servers to communicate with FastCGI application servers, like those implemented in Go with net/http/fcgi, Python, and PHP. Based on Go's net/http/cgi and net/http/fcgi.

It is designed to be a drop-in replacement for net/http/cgi.

Usage

http.Handle("/trac/", &fcgi.Handler{
	Dialer: &fcgi.NetDialer{
		Network: "unix",
		Address: "/run/trac.socket",
	},
	Root: "/trac",
})
Package Rankings
Top 8.17% on Proxy.golang.org
Badges
Extracted from project README
Go Reference