mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-22 09:29:50 +00:00
Merge branch 'master' of https://github.com/TechnitiumSoftware/DnsServer
This commit is contained in:
@@ -4767,7 +4767,7 @@ WHERE:
|
||||
- `zones` (optional): Set to `true` to backup DNS zone files. Default value is `false`.
|
||||
- `allowedZones` (optional): Set to `true` to backup allowed zones file. Default value is `false`.
|
||||
- `blockedZones` (optional): Set to `true` to backup blocked zones file. Default value is `false`.
|
||||
- `dnsSettings` (optional): Set to `true` to backup DNS settings and certificate files. The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exists within the DNS server's config folder. Default value is `false`.
|
||||
- `dnsSettings` (optional): Set to `true` to backup DNS settings and certificate files. The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exist within the DNS server's config folder. Default value is `false`.
|
||||
- `logSettings` (optional): Set to `true` to backup log settings file. Default value is `false`.
|
||||
- `authConfig` (optional): Set to `true` to backup the authentication config file. Default value is `false`.
|
||||
|
||||
|
||||
@@ -100,7 +100,7 @@ Release Date: 12 August 2023
|
||||
|
||||
- Added support for DNS over [PROXY protocol](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) version 1 and 2 for both UDP and TCP transports. This feature allows using a load balancer or reverse proxy in front of the DNS server such that the client's IP address information is passed to the DNS server. This can also be used to provide DNS-over-TLS service with a TLS terminating reverse proxy that forwards request to TCP-PROXY protocol port.
|
||||
- Updated TLS certificate implementation to allow the TLS handshake to always send the certificate chain.
|
||||
- Updated Backup and Restore feature to include Web Service and Optional Protocols certificate files when they exists within the DNS server's config folder.
|
||||
- Updated Backup and Restore feature to include Web Service and Optional Protocols certificate files when they exist within the DNS server's config folder.
|
||||
- Added DNS server uptime info in the About section.
|
||||
- Multiple other minor bug fixes and improvements.
|
||||
|
||||
|
||||
@@ -558,7 +558,7 @@ namespace DnsServerCore.Dns.ZoneManagers
|
||||
if (minimumEntriesToRemove < 1)
|
||||
return; //no need to remove
|
||||
|
||||
//remove stale records if they exists
|
||||
//remove stale records if they exist
|
||||
if (serveStale)
|
||||
minimumEntriesToRemove -= RemoveExpiredRecordsInternal(false, minimumEntriesToRemove);
|
||||
|
||||
|
||||
@@ -5216,7 +5216,7 @@ MII...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p><b>Note!</b> The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exists within the DNS server's config folder.</p>
|
||||
<p><b>Note!</b> The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exist within the DNS server's config folder.</p>
|
||||
|
||||
<p><b>Note!</b> It may take several minutes to generate the backup zip file if log files are selected to be backed up which will depend on the size of the log files on the disk.</p>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user