2019-07-01 01:07:58 +03:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-05-04 19:49:50 +03:00
|
|
|
package reverseproxy
|
|
|
|
|
|
|
|
import (
|
2019-07-02 21:37:06 +03:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
2019-05-04 19:49:50 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Register caddy module.
|
|
|
|
func init() {
|
2019-06-14 20:58:28 +03:00
|
|
|
caddy.RegisterModule(caddy.Module{
|
2019-05-04 19:49:50 +03:00
|
|
|
Name: "http.responders.reverse_proxy",
|
2019-05-21 23:22:21 +03:00
|
|
|
New: func() interface{} { return new(LoadBalanced) },
|
2019-05-04 19:49:50 +03:00
|
|
|
})
|
|
|
|
}
|