diff options
author | Wolfy-J <[email protected]> | 2019-06-24 13:35:57 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-06-24 13:35:57 +0300 |
commit | dbd44f6e68f91daa56a983559ed1d4a9359f1d69 (patch) | |
tree | c36b2aa2e200c42fc3f0eaa4de1961b10890fd4e /cmd | |
parent | 5dc7dd6b231ccea05ffbec0df47ecaa866192308 (diff) |
polishing fastcgi integration, polishing headers service (splitted from http)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go index 196bede3..6f325fb4 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -24,6 +24,7 @@ package main import ( rr "github.com/spiral/roadrunner/cmd/rr/cmd" + "github.com/spiral/roadrunner/service/headers" // services (plugins) "github.com/spiral/roadrunner/service/env" @@ -41,6 +42,7 @@ func main() { rr.Container.Register(env.ID, &env.Service{}) rr.Container.Register(rpc.ID, &rpc.Service{}) rr.Container.Register(http.ID, &http.Service{}) + rr.Container.Register(headers.ID, &headers.Service{}) rr.Container.Register(static.ID, &static.Service{}) rr.Container.Register(limit.ID, &limit.Service{}) |