Commit 6080c4fa authored by Matt Holt's avatar Matt Holt

Merge pull request #105 from abiosoft/master

FastCGI: allow "unix:" prefix for unix sockets.
parents 1cb00537 820b2af4
...@@ -61,7 +61,10 @@ func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) ...@@ -61,7 +61,10 @@ func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error)
var fcgi *FCGIClient var fcgi *FCGIClient
// check if unix socket or tcp // check if unix socket or tcp
if strings.HasPrefix(rule.Address, "/") { if strings.HasPrefix(rule.Address, "/") || strings.HasPrefix(rule.Address, "unix:") {
if strings.HasPrefix(rule.Address, "unix:") {
rule.Address = rule.Address[len("unix:"):]
}
fcgi, err = Dial("unix", rule.Address) fcgi, err = Dial("unix", rule.Address)
} else { } else {
fcgi, err = Dial("tcp", rule.Address) fcgi, err = Dial("tcp", rule.Address)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment