mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 23:32:47 +01:00
Upgrade to 0.18.1. Modify init.d script to use variables for home/config dir. Modify logrotate file to specify monthly rotation.
17 lines
304 B
Bash
17 lines
304 B
Bash
# Configuration for /etc/init.d/step-ca
|
|
|
|
# The directory where all CA-related files will be stored.
|
|
#
|
|
STEPPATH="/etc/step-ca"
|
|
|
|
# The TCP port number for the CA to listen on.
|
|
PORT="8443"
|
|
|
|
# The DNS name or IP address for the CA to listen on.
|
|
#
|
|
ADDRESS="localhost"
|
|
|
|
#
|
|
#
|
|
CA_URL="https://${ADDRESS}:${PORT}"
|