diff options
author | Ali Asad Lotia <ali.asad.lotia@gmail.com> | 2019-01-05 03:58:07 +0100 |
---|---|---|
committer | Ali Asad Lotia <ali.asad.lotia@gmail.com> | 2019-01-05 03:58:07 +0100 |
commit | da65cd50a6e9d118608d60689fa8addb0c1bd661 (patch) | |
tree | cdb2552d1fb26052faa4ae493fb803367040fc74 /etc | |
parent | Merge branch 'centos-issue' into 'master' (diff) | |
download | knot-resolver-da65cd50a6e9d118608d60689fa8addb0c1bd661.tar.xz knot-resolver-da65cd50a6e9d118608d60689fa8addb0c1bd661.zip |
Correct help function output in docker config.
Previously the help function output in the docker config listed port 80
as the port on which the server would listen for DNS over UDP and TCP.
However that was inconsistent with the first output line where it was
indicated to be port 53. This has now been corrected.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/config.docker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/config.docker b/etc/config.docker index 05016726..d239dba8 100644 --- a/etc/config.docker +++ b/etc/config.docker @@ -29,7 +29,7 @@ function print_help() .. 'Docker will map ports 53, 853, and 8053 to some other numbers, see\n' .. '$ docker ps\n' .. '(column PORTS)\n' - .. '80 -> DNS protocol over UDP and TCP\n' + .. '53 -> DNS protocol over UDP and TCP\n' .. '853 -> DNS-over-TLS protocol\n' .. '8053 -> web interface\n' .. '\n' |