own-pki/config/default.conf
2026-04-26 20:44:39 +02:00

56 lines
1.3 KiB
Plaintext

# Path to config file
CONF_PATH=/etc/own-pki
# Path to certificate files
CERTS_PATH=/var/lib/own-pki/certs
# Path to the certificate authority's private key file
KEY_CA_PATH=/var/lib/own-pki/ca/key
# Path to the certificate authority's public key file
CRT_CA_PATH=/var/lib/own-pki/ca/crt
# Path to pki scripts
BIN_PATH=/opt/own-pki
# Enables colorization (true) or disables it (false)
ENABLE_COLOR=true
# Default number of days for the certificate's validity
# This can be overridden with the `-t or --days` option
# when running the script.
DAYS=375
# Variables to use for create ca-config file
# Country Name (2 letter code)
COUNTRY_NAME=CH
# State or province name (full name)
STATE_OR_PROVINCE_NAME=Vaud
# Locality name (eg, city)
LOCALITY_NAME=Nyon
# Organization name (eg, company)
ORGANIZATION_NAME="GMO Lab (gmolab)"
# Organizational Unit Name (eg, section)
ORGANIZATIONAL_UNIT_NAME="ITCS (Information Technology and Communications Service)"
# NOT USE. SET WITH PARAM -n from create-ca.sh script
# Common Name (eg, YOUR name)
COMMON_NAME="GMOLab CA"
# Email address
EMAIL_ADDRESS=example@example.com
# Debug
# false = debug inactive
# true = debug active
DEBUG=false
# Automatically answers yes to the questions
# 0 = Ask confirmation
# 1 = does not ask confirmation
ASSUME_YES=0