- Plain DNS is used only for the first resolving of github.com to obtain block lists and crypto files required by Unbound - DNS over TLS is used at all time by the system and the Go program thereafter, even between periodic restarts - Downtime during a periodic update is < 1 second - On an Unbound start or unexpected exit error, the container falls back on the unencrypted version of the DNS in order to try restarting Unbound
14 lines
430 B
Go
14 lines
430 B
Go
package constants
|
|
|
|
const (
|
|
// Announcement is a message announcement
|
|
Announcement = "Auto update of DNS over TLS block lists and crypto files"
|
|
// AnnouncementExpiration is the expiration date of the announcement in format yyyy-mm-dd
|
|
AnnouncementExpiration = "2020-05-28"
|
|
)
|
|
|
|
const (
|
|
// IssueLink is the link for users to use to create issues
|
|
IssueLink = "https://github.com/qdm12/private-internet-access-docker/issues/new"
|
|
)
|