Initial commit

This commit is contained in:
2021-11-30 11:42:48 +01:00
commit e5ac6a1d47
10 changed files with 248 additions and 0 deletions

17
example.cert Normal file
View File

@@ -0,0 +1,17 @@
#
# CERT_FILE - Destination of cert file
# KEY_FILE - Destination of key file. If empty appended to CERT_FILE
# *_OWNER - Owner (default: root)
# *_GROUP - Group (default: root)
# *_MODE - Mode (default: 0600)
#
CERT_FILE=/etc/pki/tls/certs/example.com.pem
CERT_OWNER=root
CERT_GROUP=root
CERT_MODE=0644
KEY_FILE=/etc/pki/tls/private/example.com.pem
KEY_OWNER=root
KEY_GROUP=root
KEY_MODE=0600