@@ -15,19 +15,23 @@ nginx_send_timeout: 120s
15
15
# # variables unset by default
16
16
httpd_no_error_pages : false
17
17
https_enabled : false
18
+ # If httpd_keytab_file, httpd_ssl_key_file and httpd_ssl_crt_file
19
+ # are already present on the remote Jenkins master being configured by cinch,
20
+ # set the following variable to true to copy the files from the filesystem
21
+ # of the remote host rather than from the system running Ansible
22
+ httpd_ssl_keytab_files_remote_src : false
18
23
# local path to use as source for keytab
19
- httpd_keytab_file : " /THIS/FILE/PROBABLY/DOESNT/EXIST"
24
+ # httpd_keytab_file: "/THIS/FILE/PROBABLY/DOESNT/EXIST"
20
25
# Local path to the SSL certificate to use in configuring HTTPS. Can be full or relative
21
26
# to the path from where the main playbook is run. This can be overriden if you want
22
27
# secure access to Jenkins using your own SSL certificate. By default, a self signed
23
28
# certificate will be created and used.
24
- httpd_ssl_key_file : " {{ ssl_key_file | default('/THIS/FILE/PROBABLY/DOESNT/EXIST') }}"
25
- # Local path to the SSL private key in crt format. For more details see comment above.
26
- # When using own SSL certificates, you need to override either this variable or
27
- # httpd_ssl_pem_file along with httpd_ssl_key_file.
28
- httpd_ssl_crt_file : " {{ ssl_crt_file | default('/THIS/FILE/PROBABLY/DOESNT/EXIST') }}"
29
+ # httpd_ssl_key_file: "/THIS/FILE/PROBABLY/DOESNT/EXIST"
30
+ # Local path to the SSL private key in crt or pem format. For more details see comment above.
31
+ # When using own SSL certificates, you need to override either this variable
32
+ # httpd_ssl_crt_file: "/THIS/FILE/PROBABLY/DOESNT/EXIST"
29
33
# Local path to the SSL private key in PEM format. For more details see comment above.
30
- httpd_ssl_pem_file : " {{ ssl_pem_file | default(' /THIS/FILE/PROBABLY/DOESNT/EXIST') }} "
34
+ # httpd_ssl_pem_file: "/THIS/FILE/PROBABLY/DOESNT/EXIST"
31
35
# location and CN settings for the self signed certificate
32
36
ssl_self_signed_string : " /C=US/ST=New York/L=New York City/O=My Department/CN={{ service_name }}"
33
37
# whether to use a speedy method to generate Diffie Hellman parameters
0 commit comments