Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 551 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 551 Bytes

Go FastCGI client

Go Reference

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",
})