mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
11 lines
250 B
Go
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": {},
|
|
}
|