mirror of
https://github.com/certbot/certbot.git
synced 2026-04-24 15:54:10 -04:00
Shuffle files around in an initial attempt of creating trustify, trustify.protocol and trustify.client Python modules. The reference implemntation of the server remains where it was for now.
23 lines
721 B
Python
23 lines
721 B
Python
# Apache server root directory
|
|
SERVER_ROOT = "/etc/apache2/"
|
|
# Configuration file directory for trustify
|
|
CONFIG_DIR = "/etc/trustify/"
|
|
# Working directory for trustify
|
|
WORK_DIR = "/var/lib/trustify/"
|
|
|
|
# Used by openssl to sign challenge certificate with trustify extension
|
|
CHOC_CERT_CONF = CONFIG_DIR + "choc_cert_extensions.cnf"
|
|
# Contains standard Apache SSL directives
|
|
OPTIONS_SSL_CONF = CONFIG_DIR + "options-ssl.conf"
|
|
# Temporary file for challenge virtual hosts
|
|
APACHE_CHALLENGE_CONF = CONFIG_DIR + "choc_sni_cert_challenge.conf"
|
|
# Byte size of S and Nonce
|
|
S_SIZE = 32
|
|
NONCE_SIZE = 32
|
|
|
|
# bits of hashcash to generate
|
|
difficulty = 23
|
|
|
|
# Trustify cert and chain files
|
|
cert_file = "cert.pem"
|
|
chain_file = "chain.pem"
|