@@ -44,17 +44,19 @@ type HTTPS struct {
44
44
strictSNI bool
45
45
}
46
46
47
+ //nolint:golint, stylecheck
48
+ const HTTPS_PORT_SSLPASSTHROUGH int64 = 8444
49
+
47
50
func (handler HTTPS ) bindList (passhthrough bool ) (binds []models.Bind ) {
48
51
if handler .IPv4 {
49
52
binds = append (binds , models.Bind {
50
- Address : func () ( addr string ) {
51
- addr = handler . AddrIPv4
53
+ Address : handler . AddrIPv4 ,
54
+ Port : func () * int64 {
52
55
if passhthrough {
53
- addr = "127.0.0.1"
56
+ return utils . PtrInt64 ( HTTPS_PORT_SSLPASSTHROUGH )
54
57
}
55
- return
58
+ return utils . PtrInt64 ( handler . Port )
56
59
}(),
57
- Port : utils .PtrInt64 (handler .Port ),
58
60
BindParams : models.BindParams {
59
61
Name : "v4" ,
60
62
AcceptProxy : passhthrough ,
@@ -66,11 +68,16 @@ func (handler HTTPS) bindList(passhthrough bool) (binds []models.Bind) {
66
68
Address : func () (addr string ) {
67
69
addr = handler .AddrIPv6
68
70
if passhthrough {
69
- addr = "::1 "
71
+ addr = "::"
70
72
}
71
73
return
72
74
}(),
73
- Port : utils .PtrInt64 (handler .Port ),
75
+ Port : func () * int64 {
76
+ if passhthrough {
77
+ return utils .PtrInt64 (HTTPS_PORT_SSLPASSTHROUGH )
78
+ }
79
+ return utils .PtrInt64 (handler .Port )
80
+ }(),
74
81
BindParams : models.BindParams {
75
82
AcceptProxy : passhthrough ,
76
83
Name : "v6" ,
@@ -220,7 +227,7 @@ func (handler HTTPS) enableSSLPassthrough(h haproxy.HAProxy) (err error) {
220
227
h .BackendServerCreate (h .BackSSL , models.Server {
221
228
Name : h .FrontHTTPS ,
222
229
Address : "127.0.0.1" ,
223
- Port : utils .PtrInt64 (handler . Port ),
230
+ Port : utils .PtrInt64 (HTTPS_PORT_SSLPASSTHROUGH ),
224
231
ServerParams : models.ServerParams {SendProxyV2 : "enabled" },
225
232
}),
226
233
h .BackendSwitchingRuleCreate (h .FrontSSL , models.BackendSwitchingRule {
0 commit comments