├── README.rst ├── doc ├── index.rst └── conf.py └── LICENSE /README.rst: -------------------------------------------------------------------------------- 1 | ISC's DNSSEC Guide has moved 2 | ============================ 3 | 4 | ISC's DNSSEC Guide has been incorporated into BIND manual. 5 | Please use this new URL: 6 | https://bind9.readthedocs.io/en/latest/dnssec-guide.html 7 | 8 | Source code of the guide can be found here: 9 | https://gitlab.isc.org/isc-projects/bind9/-/tree/main/doc/dnssec-guide 10 | 11 | To report issues please use this new URL: 12 | https://gitlab.isc.org/isc-projects/bind9/-/issues 13 | -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- 1 | ISC's DNSSEC Guide has moved 2 | ============================ 3 | 4 | ISC's DNSSEC Guide has been incorporated into BIND manual. 5 | Please use this new URL: 6 | https://bind9.readthedocs.io/en/latest/dnssec-guide.html 7 | 8 | Source code of the guide can be found here: 9 | https://gitlab.isc.org/isc-projects/bind9/-/tree/main/doc/dnssec-guide 10 | 11 | To report issues please use this new URL: 12 | https://gitlab.isc.org/isc-projects/bind9/-/issues 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2020 Internet Systems Consortium, Inc. ("ISC") 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | 15 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- 1 | ############################################################################ 2 | # Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 | # 4 | # This Source Code Form is subject to the terms of the Mozilla Public 5 | # License, v. 2.0. If a copy of the MPL was not distributed with this 6 | # file, you can obtain one at https://mozilla.org/MPL/2.0/. 7 | # 8 | # See the COPYRIGHT file distributed with this work for additional 9 | # information regarding copyright ownership. 10 | ############################################################################ 11 | 12 | # Configuration file for the Sphinx documentation builder. 13 | # 14 | # This file only contains a selection of the most common options. For a full 15 | # list see the documentation: 16 | # https://www.sphinx-doc.org/en/master/usage/configuration.html 17 | 18 | # -- Path setup -------------------------------------------------------------- 19 | 20 | # If extensions (or modules to document with autodoc) are in another directory, 21 | # add these directories to sys.path here. If the directory is relative to the 22 | # documentation root, use os.path.abspath to make it absolute, like shown here. 23 | # 24 | # import os 25 | # import sys 26 | # sys.path.insert(0, os.path.abspath('.')) 27 | 28 | 29 | # -- Project information ----------------------------------------------------- 30 | 31 | project = 'ISC DNSSEC Guide - Redirect' 32 | copyright = '2020, Internet Systems Consortium' 33 | author = 'Internet Systems Consortium' 34 | 35 | # -- General configuration --------------------------------------------------- 36 | 37 | # Add any Sphinx extension module names here, as strings. They can be 38 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 39 | # ones. 40 | extensions = [ 41 | ] 42 | 43 | # Add any paths that contain templates here, relative to this directory. 44 | templates_path = ['_templates'] 45 | 46 | # List of patterns, relative to source directory, that match files and 47 | # directories to ignore when looking for source files. 48 | # This pattern also affects html_static_path and html_extra_path. 49 | exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] 50 | 51 | # The master toctree document. 52 | master_doc = 'index' 53 | 54 | # -- Options for HTML output ------------------------------------------------- 55 | 56 | # The theme to use for HTML and HTML Help pages. See the documentation for 57 | # a list of builtin themes. 58 | # 59 | html_theme = 'sphinx_rtd_theme' 60 | 61 | # -- Options for EPUB output ------------------------------------------------- 62 | 63 | epub_basename = 'DNSSECGuide' 64 | --------------------------------------------------------------------------------