Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

YDA-5395: Apache 2.4.6 needs a separate certificate chain file #339

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions roles/yoda_external_user_service/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ eus_mail_template: uu
openssl_private_dir: '/etc/pki/tls/private'
openssl_certs_dir: '/etc/pki/tls/certs'
openssl_key_signed: localhost.key
openssl_crt_signed: localhost.crt
openssl_crt_signed_and_chain: localhost_and_chain.crt
openssl_chain: chain.crt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ Listen {{ eus_api_port }}
# the certificate is encrypted, then you will be prompted for a
# pass phrase. Note that a kill -HUP will prompt again. A new
# certificate can be generated using the genkey(1) command.
SSLCertificateFile {{ openssl_certs_dir }}/{{ openssl_crt_signed_and_chain }}
SSLCertificateFile {{ openssl_certs_dir }}/{{ openssl_crt_signed }}
SSLCertificateChainFile {{ openssl_certs_dir }}/{{ openssl_chain }}

# Server Private Key:
# If the key is not combined with the certificate, use this
Expand Down