mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-03 04:07:51 +08:00
153 lines
3.9 KiB
Go
153 lines
3.9 KiB
Go
package openresty
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/goodrain/rainbond/gateway/controller/openresty/model"
|
|
v1 "github.com/goodrain/rainbond/gateway/v1"
|
|
)
|
|
|
|
func langGoodrainMe(ip string) *model.Server {
|
|
svr := &model.Server{
|
|
Listen: fmt.Sprintf("%s:%d", ip, 80),
|
|
ServerName: "lang.goodrain.me",
|
|
Rewrites: []model.Rewrite{
|
|
{
|
|
Regex: "^/(.*)$",
|
|
Replacement: "/artifactory/pkg_lang/$1",
|
|
Flag: "break",
|
|
},
|
|
},
|
|
Locations: []*model.Location{
|
|
{
|
|
EnableMetrics: false,
|
|
DisableAccessLog: true,
|
|
Path: "/",
|
|
ProxyRedirect: "off",
|
|
ProxyConnectTimeout: model.Time{Num: 60, Unit: "s"},
|
|
ProxyReadTimeout: model.Time{Num: 600, Unit: "s"},
|
|
ProxySendTimeout: model.Time{Num: 600, Unit: "s"},
|
|
ProxySetHeaders: []*model.ProxySetHeader{
|
|
{Field: "Host", Value: "$http_host"},
|
|
{Field: "X-Real-IP", Value: "$remote_addr"},
|
|
{Field: "X-Forwarded-For", Value: "$proxy_add_x_forwarded_for"},
|
|
},
|
|
NameCondition: map[string]*v1.Condition{
|
|
"lang": {
|
|
Type: v1.DefaultType,
|
|
Value: map[string]string{"1": "1"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
return svr
|
|
}
|
|
|
|
func mavenGoodrainMe(ip string) *model.Server {
|
|
svr := &model.Server{
|
|
Listen: fmt.Sprintf("%s:%d", ip, 80),
|
|
ServerName: "maven.goodrain.me",
|
|
Locations: []*model.Location{
|
|
{
|
|
EnableMetrics: false,
|
|
DisableAccessLog: true,
|
|
Path: "/",
|
|
Rewrites: []model.Rewrite{
|
|
{
|
|
Regex: "^/(.*)$",
|
|
Replacement: "/artifactory/libs-release/$1",
|
|
Flag: "break",
|
|
},
|
|
},
|
|
ProxyRedirect: "off",
|
|
ProxyConnectTimeout: model.Time{Num: 60, Unit: "s"},
|
|
ProxyReadTimeout: model.Time{Num: 600, Unit: "s"},
|
|
ProxySendTimeout: model.Time{Num: 600, Unit: "s"},
|
|
ProxySetHeaders: []*model.ProxySetHeader{
|
|
{Field: "Host", Value: "$http_host"},
|
|
{Field: "X-Real-IP", Value: "$remote_addr"},
|
|
{Field: "X-Forwarded-For", Value: "$proxy_add_x_forwarded_for"},
|
|
},
|
|
NameCondition: map[string]*v1.Condition{
|
|
"maven": {
|
|
Type: v1.DefaultType,
|
|
Value: map[string]string{"1": "1"},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Path: "/monitor",
|
|
Return: model.Return{Code: 204},
|
|
DisableProxyPass: true,
|
|
},
|
|
},
|
|
}
|
|
return svr
|
|
}
|
|
|
|
func goodrainMe(cfgPath string, ip string) *model.Server {
|
|
svr := &model.Server{
|
|
Listen: fmt.Sprintf("%s:%d %s", ip, 443, "ssl"),
|
|
ServerName: "goodrain.me",
|
|
SSLCertificate: fmt.Sprintf("%s/%s", cfgPath, "ssl/server.crt"),
|
|
SSLCertificateKey: fmt.Sprintf("%s/%s", cfgPath, "ssl/server.key"),
|
|
ClientMaxBodySize: model.Size{Num: 0, Unit: "k"},
|
|
ChunkedTransferEncoding: true,
|
|
Locations: []*model.Location{
|
|
{
|
|
EnableMetrics: false,
|
|
DisableAccessLog: true,
|
|
Path: "/v2/",
|
|
ProxySetHeaders: []*model.ProxySetHeader{
|
|
{Field: "Host", Value: "$http_host"},
|
|
{Field: "X-Real-IP", Value: "$remote_addr"},
|
|
{Field: "X-Forwarded-For", Value: "$proxy_add_x_forwarded_for"},
|
|
{Field: "X-Forwarded-Proto", Value: "https"},
|
|
},
|
|
ProxyReadTimeout: model.Time{
|
|
Num: 900,
|
|
Unit: "s",
|
|
},
|
|
NameCondition: map[string]*v1.Condition{
|
|
"registry": {
|
|
Type: v1.DefaultType,
|
|
Value: map[string]string{"1": "1"},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Path: "/monitor",
|
|
Return: model.Return{Code: 200, Text: "ok"},
|
|
DisableProxyPass: true,
|
|
},
|
|
},
|
|
}
|
|
return svr
|
|
}
|
|
|
|
func repoGoodrainMe(ip string) *model.Server {
|
|
return &model.Server{
|
|
Listen: fmt.Sprintf("%s:%d", ip, 80),
|
|
Root: "/grdata/services/offline/pkgs/",
|
|
ServerName: "repo.goodrain.me",
|
|
}
|
|
}
|
|
|
|
func kubeApiserver(ip string) *model.Server {
|
|
svr := &model.Server{
|
|
Listen: fmt.Sprintf("%s:%d", ip, 6443),
|
|
ProxyPass: "kube_apiserver",
|
|
ProxyTimeout: model.Time{
|
|
Num: 10,
|
|
Unit: "m",
|
|
},
|
|
ProxyConnectTimeout: model.Time{
|
|
Num: 10,
|
|
Unit: "m",
|
|
},
|
|
}
|
|
|
|
return svr
|
|
}
|