23 lines
752 B
Bash
23 lines
752 B
Bash
#!/bin/sh
|
|
|
|
# OpenXPKI Install Settings
|
|
COMPANY_NAME="Swissmakers"
|
|
REALM="swissmakers";
|
|
FQDN="pki.swissmakers.corp";
|
|
|
|
# Generate a new password with: podman exec -it openxpki_server openxpkiadm hashpwd
|
|
TEST_ACC_PASSWD="{ssha256}xRhKru9YTCWoC+A9jCTui7ABZDHNKjfY9rSD4oI1f7dlR2J6OUF3ZHhDUEpTZFpWdzljdE1nPT0=";
|
|
|
|
# unset this to get random passwords for all your private-keys (put into the .pass files)
|
|
KEY_PASSWORD="thisshouldbeaverysecurepassword"
|
|
|
|
# Do not edit below here:
|
|
OPENXPKI_SRC_DIR="openxpki-config";
|
|
OPENXPKI_CONFIG_DIR="/opt/openxpki/config";
|
|
|
|
## Realm
|
|
REALM_LONG_NAME="${FQDN}";
|
|
REALM_URL="https://${FQDN}/openxpki/";
|
|
|
|
# The profile cert expiration for the certificate profiles, must be before the CA Issuer expires
|
|
PROFILE_CERT_EXPIR="0006"; |