Files
photoprism/pkg/http/dns/reserved.go
2025-10-19 21:08:48 +02:00

11 lines
250 B
Go

package dns
// ReservedDomains lists special/reserved domains that must not be used as cluster domains.
var ReservedDomains = map[string]struct{}{
"example.com": {},
"example.net": {},
"example.org": {},
"invalid": {},
"test": {},
}