mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
server_url and base_domain: re-word error message, fix a one-off bug and add a test case for the bug.
This commit is contained in:
parent
c4ac626298
commit
e834017314
2 changed files with 8 additions and 4 deletions
|
@ -30,7 +30,7 @@ const (
|
|||
|
||||
var (
|
||||
errOidcMutuallyExclusive = errors.New("oidc_client_secret and oidc_client_secret_path are mutually exclusive")
|
||||
errServerURLSuffix = errors.New("server_url cannot be a suffix of the base_domain, this will cause the headscale server and embedded DERP to become unreachable from the Tailscale node.")
|
||||
errServerURLSuffix = errors.New("server_url cannot be part of base_domain in a way that could make the DERP and headscale server unreachable.")
|
||||
)
|
||||
|
||||
type IPAllocationStrategy string
|
||||
|
@ -946,8 +946,8 @@ func isSafeServerURL(serverURL, baseDomain string) error {
|
|||
|
||||
s := len(serverDomainParts)
|
||||
b := len(baseDomainParts)
|
||||
for i := 1; i < len(baseDomainParts)-1; i++ {
|
||||
if serverDomainParts[s-i] != baseDomainParts[b-i] {
|
||||
for i := 0; i < len(baseDomainParts); i++ {
|
||||
if serverDomainParts[s-i-1] != baseDomainParts[b-i-1] {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
|
|
@ -140,7 +140,7 @@ func TestReadConfig(t *testing.T) {
|
|||
return LoadServerConfig()
|
||||
},
|
||||
want: nil,
|
||||
wantErr: "server_url cannot be a suffix of the base_domain, this will cause the headscale server and embedded DERP to become unreachable from the Tailscale node.",
|
||||
wantErr: errServerURLSuffix.Error(),
|
||||
},
|
||||
{
|
||||
name: "base-domain-not-in-server-url",
|
||||
|
@ -362,6 +362,10 @@ func TestSafeServerURL(t *testing.T) {
|
|||
serverURL: "https://headscale.com",
|
||||
baseDomain: "clients.subdomain.headscale.com",
|
||||
},
|
||||
{
|
||||
serverURL: "https://headscale.kristoffer.com",
|
||||
baseDomain: "mybase",
|
||||
},
|
||||
{
|
||||
serverURL: "https://server.headscale.com",
|
||||
baseDomain: "headscale.com",
|
||||
|
|
Loading…
Reference in a new issue