From 5d6ff37d793d3ab4792b2dc246b7ceb73fa16049 Mon Sep 17 00:00:00 2001 From: peteca Date: Mon, 2 Feb 2026 14:58:46 -0800 Subject: [PATCH 1/2] Update ansible docs for ssl certificates --- _docs/sysadmin/installation/ansible.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/_docs/sysadmin/installation/ansible.md b/_docs/sysadmin/installation/ansible.md index bce39395..6f58b304 100644 --- a/_docs/sysadmin/installation/ansible.md +++ b/_docs/sysadmin/installation/ansible.md @@ -52,12 +52,11 @@ configurations and automate the term creation process in Submitty. Once you have your certificate and key, place them in the appropriate directory (usually `/etc/ssl/certs/` for the certificate and `/etc/ssl/private/` for the key). - Then, update your server's SSL configuration file with the paths to your certificate and key. - The relevant lines might look something like this: + Then, add the location to your certificate and key files to the corresponding fields in the defaults file, such as: ``` - SSLCertificateFile /etc/ssl/certs/mycert.pem - SSLCertificateKeyFile /etc/ssl/private/mykey.pem + submitty_install_ssl_cert_file: /etc/ssl/certs/submitty.pem + submitty_install_ssl_key_file: /etc/ssl/private/submitty.key ``` Save your changes and proceed to run the Ansible script. From 312670cbe96c93e27dbccc0b7c43043cefe8b39e Mon Sep 17 00:00:00 2001 From: peteca Date: Mon, 2 Feb 2026 14:59:36 -0800 Subject: [PATCH 2/2] Update wording to mention playbook instead of default --- _docs/sysadmin/installation/ansible.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/sysadmin/installation/ansible.md b/_docs/sysadmin/installation/ansible.md index 6f58b304..e81b39a1 100644 --- a/_docs/sysadmin/installation/ansible.md +++ b/_docs/sysadmin/installation/ansible.md @@ -52,7 +52,7 @@ configurations and automate the term creation process in Submitty. Once you have your certificate and key, place them in the appropriate directory (usually `/etc/ssl/certs/` for the certificate and `/etc/ssl/private/` for the key). - Then, add the location to your certificate and key files to the corresponding fields in the defaults file, such as: + Then, add the location to your certificate and key files to the corresponding fields in the submitty_install playbook, such as: ``` submitty_install_ssl_cert_file: /etc/ssl/certs/submitty.pem