...

Text file src/github.com/letsencrypt/boulder/test/hostname-policy.yaml

Documentation: github.com/letsencrypt/boulder/test

     1#
     2# Example YAML Boulder hostname policy
     3#
     4# This is *not* a production ready policy file and not reflective of Let's
     5# Encrypt's policies! It is just an example.
     6
     7# ExactBlockedNames prevent issuance for the exact names listed, as well as
     8# their wildcard form.
     9ExactBlockedNames:
    10  - "highrisk.le-test.hoffman-andrews.com"
    11  - "exactblacklist.letsencrypt.org"
    12
    13# HighRiskBlockedNames prevent issuance for the exact names listed as well as
    14# all subdomains/wildcards.
    15HighRiskBlockedNames:
    16  # See RFC 3152
    17  - "ipv6.arpa"
    18  # See RFC 2317
    19  - "in-addr.arpa"
    20  # Etc etc etc
    21  - "example"
    22  - "example.net"
    23  - "example.org"
    24  - "invalid"
    25  - "local"
    26  - "localhost"
    27  - "test"
    28
    29# AdminBlockedNames are treated the same as HighRiskBlockedNames by Boulder but
    30# since they change more frequently based on administrative action over time
    31# they are separated into their own list.
    32AdminBlockedNames:
    33  - "sealand"

View as plain text