Skip to content

Commit

Permalink
Use absolute paths for TLS config field docs
Browse files Browse the repository at this point in the history
  • Loading branch information
meln5674 committed Dec 13, 2024
1 parent d1b90b3 commit 0837c71
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/containers.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -913,15 +913,15 @@ URI to access the Podman service

Path to file containing ssh identity key

**tls_cert_file="~/certs/podman/tls.crt"**
**tls_cert_file="/path/to/certs/podman/tls.crt"**

Path to PEM file containing TLS client certificate

**tls_key_file="~/certs/podman/tls.key"**
**tls_key_file="/path/to/certs/podman/tls.key"**

Path to PEM file containing TLS client certificate private key

**tls_ca_file="~/certs/podman/ca.crt"**
**tls_ca_file="/path/to/certs/podman/ca.crt"**

Path to PEM file containing TLS certificate authority (CA) bundle

Expand Down
6 changes: 3 additions & 3 deletions pkg/config/containers.conf
Original file line number Diff line number Diff line change
Expand Up @@ -772,11 +772,11 @@ default_sysctls = [
# Path to file containing ssh identity key
# identity = "~/.ssh/id_rsa"
# Path to PEM file containing TLS client certificate
# tls_cert_file = "~/certs/podman/tls.crt"
# tls_cert_file = "/path/to/certs/podman/tls.crt"
# Path to PEM file containing TLS client certificate private key
# tls_key_file = "~/certs/podman/tls.key"
# tls_key_file = "/path/to/certs/podman/tls.key"
# Path to PEM file containing TLS certificate authority (CA) bundle
# tls_ca_file = "~/certs/podman/ca.crt"
# tls_ca_file = "/path/to/certs/podman/ca.crt"


# Directory for temporary files. Must be tmpfs (wiped after reboot)
Expand Down
6 changes: 3 additions & 3 deletions pkg/config/containers.conf-freebsd
Original file line number Diff line number Diff line change
Expand Up @@ -593,11 +593,11 @@ default_sysctls = [
# Path to file containing ssh identity key
# identity = "~/.ssh/id_rsa"
# Path to PEM file containing TLS client certificate
# tls_cert_file = "~/certs/podman/tls.crt"
# tls_cert_file = "/path/to/certs/podman/tls.crt"
# Path to PEM file containing TLS client certificate private key
# tls_key_file = "~/certs/podman/tls.key"
# tls_key_file = "/path/to/certs/podman/tls.key"
# Path to PEM file containing TLS certificate authority (CA) bundle
# tls_ca_file = "~/certs/podman/ca.crt"
# tls_ca_file = "/path/to/certs/podman/ca.crt"

# Directory for temporary files. Must be tmpfs (wiped after reboot)
#
Expand Down

0 comments on commit 0837c71

Please sign in to comment.