Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
b7091650
Commit
b7091650
authored
Nov 27, 2018
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "bind: support multiple values (#2128)"
This reverts commit
3a810c65
.
parent
3a810c65
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
38 additions
and
114 deletions
+38
-114
caddyhttp/bind/bind.go
caddyhttp/bind/bind.go
+3
-10
caddyhttp/bind/bind_test.go
caddyhttp/bind/bind_test.go
+11
-29
caddyhttp/httpserver/https.go
caddyhttp/httpserver/https.go
+5
-5
caddyhttp/httpserver/https_test.go
caddyhttp/httpserver/https_test.go
+9
-14
caddyhttp/httpserver/plugin.go
caddyhttp/httpserver/plugin.go
+8
-28
caddyhttp/httpserver/plugin_test.go
caddyhttp/httpserver/plugin_test.go
+0
-26
caddyhttp/httpserver/server.go
caddyhttp/httpserver/server.go
+1
-1
caddyhttp/httpserver/siteconfig.go
caddyhttp/httpserver/siteconfig.go
+1
-1
No files found.
caddyhttp/bind/bind.go
View file @
b7091650
...
@@ -29,17 +29,10 @@ func init() {
...
@@ -29,17 +29,10 @@ func init() {
func
setupBind
(
c
*
caddy
.
Controller
)
error
{
func
setupBind
(
c
*
caddy
.
Controller
)
error
{
config
:=
httpserver
.
GetConfig
(
c
)
config
:=
httpserver
.
GetConfig
(
c
)
for
c
.
Next
()
{
for
c
.
Next
()
{
args
:=
c
.
RemainingArgs
()
if
!
c
.
Args
(
&
config
.
ListenHost
)
{
return
c
.
ArgErr
()
if
len
(
args
)
==
0
{
return
c
.
Errf
(
"Expected at least one address"
)
}
for
_
,
addr
:=
range
args
{
config
.
ListenHosts
=
append
(
config
.
ListenHosts
,
addr
)
}
}
config
.
TLS
.
ListenHost
=
config
.
ListenHost
// necessary for ACME challenges, see issue #309
config
.
TLS
.
ListenHost
=
config
.
ListenHosts
[
0
]
// necessary for ACME challenges, see issue #309
}
}
return
nil
return
nil
}
}
caddyhttp/bind/bind_test.go
View file @
b7091650
...
@@ -15,7 +15,6 @@
...
@@ -15,7 +15,6 @@
package
bind
package
bind
import
(
import
(
"reflect"
"testing"
"testing"
"github.com/mholt/caddy"
"github.com/mholt/caddy"
...
@@ -23,34 +22,17 @@ import (
...
@@ -23,34 +22,17 @@ import (
)
)
func
TestSetupBind
(
t
*
testing
.
T
)
{
func
TestSetupBind
(
t
*
testing
.
T
)
{
for
_
,
testcase
:=
range
[]
struct
{
c
:=
caddy
.
NewTestController
(
"http"
,
`bind 1.2.3.4`
)
Bind
string
Hosts
[]
string
TLSHost
string
}{
{
Bind
:
"bind 1.2.3.4"
,
Hosts
:
[]
string
{
"1.2.3.4"
},
TLSHost
:
"1.2.3.4"
,
},
{
Bind
:
"bind 1.2.3.4 5.6.7.8"
,
Hosts
:
[]
string
{
"1.2.3.4"
,
"5.6.7.8"
},
TLSHost
:
"1.2.3.4"
,
},
}
{
c
:=
caddy
.
NewTestController
(
"http"
,
testcase
.
Bind
)
err
:=
setupBind
(
c
)
err
:=
setupBind
(
c
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatalf
(
"Expected no errors, but got: %v"
,
err
)
t
.
Fatalf
(
"Expected no errors, but got: %v"
,
err
)
}
}
cfg
:=
httpserver
.
GetConfig
(
c
)
cfg
:=
httpserver
.
GetConfig
(
c
)
if
got
,
want
:=
cfg
.
ListenHosts
,
testcase
.
Hosts
;
!
reflect
.
DeepEqual
(
got
,
want
)
{
if
got
,
want
:=
cfg
.
ListenHost
,
"1.2.3.4"
;
got
!=
want
{
t
.
Errorf
(
"Expected the config's ListenHost to be %s, was %s"
,
want
,
got
)
t
.
Errorf
(
"Expected the config's ListenHost to be %s, was %s"
,
want
,
got
)
}
}
if
got
,
want
:=
cfg
.
TLS
.
ListenHost
,
testcase
.
TLSHost
;
got
!=
want
{
if
got
,
want
:=
cfg
.
TLS
.
ListenHost
,
"1.2.3.4"
;
got
!=
want
{
t
.
Errorf
(
"Expected the TLS config's ListenHost to be %s, was %s"
,
want
,
got
)
t
.
Errorf
(
"Expected the TLS config's ListenHost to be %s, was %s"
,
want
,
got
)
}
}
}
}
}
caddyhttp/httpserver/https.go
View file @
b7091650
...
@@ -205,7 +205,7 @@ func redirPlaintextHost(cfg *SiteConfig) *SiteConfig {
...
@@ -205,7 +205,7 @@ func redirPlaintextHost(cfg *SiteConfig) *SiteConfig {
return
&
SiteConfig
{
return
&
SiteConfig
{
Addr
:
Address
{
Original
:
addr
,
Host
:
host
,
Port
:
port
},
Addr
:
Address
{
Original
:
addr
,
Host
:
host
,
Port
:
port
},
ListenHost
s
:
cfg
.
ListenHosts
,
ListenHost
:
cfg
.
ListenHost
,
middleware
:
[]
Middleware
{
redirMiddleware
},
middleware
:
[]
Middleware
{
redirMiddleware
},
TLS
:
&
caddytls
.
Config
{
AltHTTPPort
:
cfg
.
TLS
.
AltHTTPPort
,
AltTLSSNIPort
:
cfg
.
TLS
.
AltTLSSNIPort
},
TLS
:
&
caddytls
.
Config
{
AltHTTPPort
:
cfg
.
TLS
.
AltHTTPPort
,
AltTLSSNIPort
:
cfg
.
TLS
.
AltTLSSNIPort
},
Timeouts
:
cfg
.
Timeouts
,
Timeouts
:
cfg
.
Timeouts
,
...
...
caddyhttp/httpserver/https_test.go
View file @
b7091650
...
@@ -19,7 +19,6 @@ import (
...
@@ -19,7 +19,6 @@ import (
"net"
"net"
"net/http"
"net/http"
"net/http/httptest"
"net/http/httptest"
"reflect"
"testing"
"testing"
"github.com/mholt/caddy/caddytls"
"github.com/mholt/caddy/caddytls"
...
@@ -29,7 +28,7 @@ func TestRedirPlaintextHost(t *testing.T) {
...
@@ -29,7 +28,7 @@ func TestRedirPlaintextHost(t *testing.T) {
for
i
,
testcase
:=
range
[]
struct
{
for
i
,
testcase
:=
range
[]
struct
{
Host
string
// used for the site config
Host
string
// used for the site config
Port
string
Port
string
ListenHost
s
[]
string
ListenHost
string
RequestHost
string
// if different from Host
RequestHost
string
// if different from Host
}{
}{
{
{
...
@@ -45,16 +44,12 @@ func TestRedirPlaintextHost(t *testing.T) {
...
@@ -45,16 +44,12 @@ func TestRedirPlaintextHost(t *testing.T) {
},
},
{
{
Host
:
"foohost"
,
Host
:
"foohost"
,
ListenHost
s
:
[]
string
{
"93.184.216.34"
}
,
ListenHost
:
"93.184.216.34"
,
},
},
{
{
Host
:
"foohost"
,
Host
:
"foohost"
,
Port
:
"1234"
,
Port
:
"1234"
,
ListenHosts
:
[]
string
{
"93.184.216.34"
},
ListenHost
:
"93.184.216.34"
,
},
{
Host
:
"foohost"
,
ListenHosts
:
[]
string
{
"127.0.0.1"
,
"127.0.0.2"
},
},
},
{
{
Host
:
"foohost"
,
Host
:
"foohost"
,
...
@@ -75,7 +70,7 @@ func TestRedirPlaintextHost(t *testing.T) {
...
@@ -75,7 +70,7 @@ func TestRedirPlaintextHost(t *testing.T) {
Host
:
testcase
.
Host
,
Host
:
testcase
.
Host
,
Port
:
testcase
.
Port
,
Port
:
testcase
.
Port
,
},
},
ListenHost
s
:
testcase
.
ListenHosts
,
ListenHost
:
testcase
.
ListenHost
,
TLS
:
new
(
caddytls
.
Config
),
TLS
:
new
(
caddytls
.
Config
),
})
})
...
@@ -83,7 +78,7 @@ func TestRedirPlaintextHost(t *testing.T) {
...
@@ -83,7 +78,7 @@ func TestRedirPlaintextHost(t *testing.T) {
if
actual
,
expected
:=
cfg
.
Addr
.
Host
,
testcase
.
Host
;
actual
!=
expected
{
if
actual
,
expected
:=
cfg
.
Addr
.
Host
,
testcase
.
Host
;
actual
!=
expected
{
t
.
Errorf
(
"Test %d: Expected redir config to have host %s but got %s"
,
i
,
expected
,
actual
)
t
.
Errorf
(
"Test %d: Expected redir config to have host %s but got %s"
,
i
,
expected
,
actual
)
}
}
if
actual
,
expected
:=
cfg
.
ListenHost
s
,
testcase
.
ListenHosts
;
!
reflect
.
DeepEqual
(
actual
,
expected
)
{
if
actual
,
expected
:=
cfg
.
ListenHost
,
testcase
.
ListenHost
;
actual
!=
expected
{
t
.
Errorf
(
"Test %d: Expected redir config to have bindhost %s but got %s"
,
i
,
expected
,
actual
)
t
.
Errorf
(
"Test %d: Expected redir config to have bindhost %s but got %s"
,
i
,
expected
,
actual
)
}
}
if
actual
,
expected
:=
cfg
.
Addr
.
Port
,
HTTPPort
;
actual
!=
expected
{
if
actual
,
expected
:=
cfg
.
Addr
.
Port
,
HTTPPort
;
actual
!=
expected
{
...
...
caddyhttp/httpserver/plugin.go
View file @
b7091650
...
@@ -239,18 +239,9 @@ func (h *httpContext) MakeServers() ([]caddy.Server, error) {
...
@@ -239,18 +239,9 @@ func (h *httpContext) MakeServers() ([]caddy.Server, error) {
// see if all the addresses (both sites and
// see if all the addresses (both sites and
// listeners) are loopback to help us determine
// listeners) are loopback to help us determine
// if this is a "production" instance or not
// if this is a "production" instance or not
for
_
,
listenHost
:=
range
cfg
.
ListenHosts
{
if
!
atLeastOneSiteLooksLikeProduction
{
if
!
atLeastOneSiteLooksLikeProduction
{
if
!
caddy
.
IsLoopback
(
cfg
.
Addr
.
Host
)
&&
if
!
caddy
.
IsLoopback
(
cfg
.
Addr
.
Host
)
&&
!
caddy
.
IsLoopback
(
listenHost
)
&&
!
caddy
.
IsLoopback
(
cfg
.
ListenHost
)
&&
(
caddytls
.
QualifiesForManagedTLS
(
cfg
)
||
caddytls
.
HostQualifies
(
cfg
.
Addr
.
Host
))
{
atLeastOneSiteLooksLikeProduction
=
true
}
}
}
if
!
atLeastOneSiteLooksLikeProduction
&&
len
(
cfg
.
ListenHosts
)
==
0
{
if
!
caddy
.
IsLoopback
(
cfg
.
Addr
.
Host
)
&&
(
caddytls
.
QualifiesForManagedTLS
(
cfg
)
||
(
caddytls
.
QualifiesForManagedTLS
(
cfg
)
||
caddytls
.
HostQualifies
(
cfg
.
Addr
.
Host
))
{
caddytls
.
HostQualifies
(
cfg
.
Addr
.
Host
))
{
atLeastOneSiteLooksLikeProduction
=
true
atLeastOneSiteLooksLikeProduction
=
true
...
@@ -377,31 +368,20 @@ func groupSiteConfigsByListenAddr(configs []*SiteConfig) (map[string][]*SiteConf
...
@@ -377,31 +368,20 @@ func groupSiteConfigsByListenAddr(configs []*SiteConfig) (map[string][]*SiteConf
for
_
,
conf
:=
range
configs
{
for
_
,
conf
:=
range
configs
{
// We would add a special case here so that localhost addresses
// We would add a special case here so that localhost addresses
// bind to 127.0.0.1 if conf.ListenHost
s
is not already set, which
// bind to 127.0.0.1 if conf.ListenHost is not already set, which
// would prevent outsiders from even connecting; but that was problematic:
// would prevent outsiders from even connecting; but that was problematic:
// https://caddy.community/t/wildcard-virtual-domains-with-wildcard-roots/221/5?u=matt
// https://caddy.community/t/wildcard-virtual-domains-with-wildcard-roots/221/5?u=matt
if
conf
.
Addr
.
Port
==
""
{
if
conf
.
Addr
.
Port
==
""
{
conf
.
Addr
.
Port
=
Port
conf
.
Addr
.
Port
=
Port
}
}
addr
,
err
:=
net
.
ResolveTCPAddr
(
"tcp"
,
net
.
JoinHostPort
(
conf
.
ListenHost
,
conf
.
Addr
.
Port
))
if
len
(
conf
.
ListenHosts
)
==
0
{
addr
,
err
:=
net
.
ResolveTCPAddr
(
"tcp"
,
net
.
JoinHostPort
(
""
,
conf
.
Addr
.
Port
))
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
addrstr
:=
addr
.
String
()
addrstr
:=
addr
.
String
()
groups
[
addrstr
]
=
append
(
groups
[
addrstr
],
conf
)
groups
[
addrstr
]
=
append
(
groups
[
addrstr
],
conf
)
}
}
for
_
,
host
:=
range
conf
.
ListenHosts
{
addr
,
err
:=
net
.
ResolveTCPAddr
(
"tcp"
,
net
.
JoinHostPort
(
host
,
conf
.
Addr
.
Port
))
if
err
!=
nil
{
return
nil
,
err
}
addrstr
:=
addr
.
String
()
groups
[
addrstr
]
=
append
(
groups
[
addrstr
],
conf
)
}
}
return
groups
,
nil
return
groups
,
nil
}
}
...
...
caddyhttp/httpserver/plugin_test.go
View file @
b7091650
...
@@ -15,7 +15,6 @@
...
@@ -15,7 +15,6 @@
package
httpserver
package
httpserver
import
(
import
(
"reflect"
"strings"
"strings"
"testing"
"testing"
...
@@ -348,28 +347,3 @@ func TestHideCaddyfile(t *testing.T) {
...
@@ -348,28 +347,3 @@ func TestHideCaddyfile(t *testing.T) {
}
}
t
.
Fatal
(
"Caddyfile missing from HiddenFiles"
)
t
.
Fatal
(
"Caddyfile missing from HiddenFiles"
)
}
}
func
TestGroupSiteConfigsByListenAddr
(
t
*
testing
.
T
)
{
cfg
:=
[]
*
SiteConfig
{
{
ListenHosts
:
[]
string
{
"127.0.0.1"
,
"::1"
},
},
{
Addr
:
Address
{
Port
:
"80"
,
},
},
}
groups
,
err
:=
groupSiteConfigsByListenAddr
(
cfg
)
if
err
!=
nil
{
t
.
Fatal
(
"Failed to group SiteConfigs by listen address"
)
}
actual
:=
[]
string
{}
for
k
:=
range
groups
{
actual
=
append
(
actual
,
k
)
}
expected
:=
[]
string
{
"127.0.0.1:"
+
Port
,
"[::1]:"
+
Port
,
":80"
}
if
!
reflect
.
DeepEqual
(
actual
,
expected
)
{
t
.
Errorf
(
"Expected listen on %#v, but got %#v"
,
expected
,
actual
)
}
}
caddyhttp/httpserver/server.go
View file @
b7091650
...
@@ -419,7 +419,7 @@ func (s *Server) serveHTTP(w http.ResponseWriter, r *http.Request) (int, error)
...
@@ -419,7 +419,7 @@ func (s *Server) serveHTTP(w http.ResponseWriter, r *http.Request) (int, error)
// we still check for ACME challenge if the vhost exists,
// we still check for ACME challenge if the vhost exists,
// because we must apply its HTTP challenge config settings
// because we must apply its HTTP challenge config settings
if
caddytls
.
HTTPChallengeHandler
(
w
,
r
,
vhost
.
ListenHost
s
[
0
]
)
{
if
caddytls
.
HTTPChallengeHandler
(
w
,
r
,
vhost
.
ListenHost
)
{
return
0
,
nil
return
0
,
nil
}
}
...
...
caddyhttp/httpserver/siteconfig.go
View file @
b7091650
...
@@ -31,7 +31,7 @@ type SiteConfig struct {
...
@@ -31,7 +31,7 @@ type SiteConfig struct {
// The hostname to bind listener to;
// The hostname to bind listener to;
// defaults to Addr.Host
// defaults to Addr.Host
ListenHost
s
[]
string
ListenHost
string
// TLS configuration
// TLS configuration
TLS
*
caddytls
.
Config
TLS
*
caddytls
.
Config
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment