mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-08 15:03:30 +01:00
Add apache_ssl_no_log variable so users can log output for debugging.
This commit is contained in:
parent
18d469dfc5
commit
1093a4609b
5 changed files with 8 additions and 3 deletions
|
@ -74,6 +74,10 @@ No SSL vhosts are configured by default, but you can add them using the same pat
|
||||||
|
|
||||||
Other SSL directives can be managed with other SSL-related role variables.
|
Other SSL directives can be managed with other SSL-related role variables.
|
||||||
|
|
||||||
|
apache_ssl_no_log: true
|
||||||
|
|
||||||
|
Whether to print SSL-related task output to the console when running the playbook.
|
||||||
|
|
||||||
apache_ssl_protocol: "All -SSLv2 -SSLv3"
|
apache_ssl_protocol: "All -SSLv2 -SSLv3"
|
||||||
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
|
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ apache_vhosts_ssl: []
|
||||||
|
|
||||||
apache_ignore_missing_ssl_certificate: true
|
apache_ignore_missing_ssl_certificate: true
|
||||||
|
|
||||||
|
apache_ssl_no_log: true
|
||||||
apache_ssl_protocol: "All -SSLv2 -SSLv3"
|
apache_ssl_protocol: "All -SSLv2 -SSLv3"
|
||||||
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
|
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
stat: "path={{ item.certificate_file }}"
|
stat: "path={{ item.certificate_file }}"
|
||||||
register: apache_ssl_certificates
|
register: apache_ssl_certificates
|
||||||
with_items: "{{ apache_vhosts_ssl }}"
|
with_items: "{{ apache_vhosts_ssl }}"
|
||||||
no_log: true
|
no_log: "{{ apache_ssl_no_log }}"
|
||||||
|
|
||||||
- name: Add apache vhosts configuration.
|
- name: Add apache vhosts configuration.
|
||||||
template:
|
template:
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
stat: path={{ item.certificate_file }}
|
stat: path={{ item.certificate_file }}
|
||||||
register: apache_ssl_certificates
|
register: apache_ssl_certificates
|
||||||
with_items: "{{ apache_vhosts_ssl }}"
|
with_items: "{{ apache_vhosts_ssl }}"
|
||||||
no_log: true
|
no_log: "{{ apache_ssl_no_log }}"
|
||||||
|
|
||||||
- name: Enable Apache mods.
|
- name: Enable Apache mods.
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
stat: path={{ item.certificate_file }}
|
stat: path={{ item.certificate_file }}
|
||||||
register: apache_ssl_certificates
|
register: apache_ssl_certificates
|
||||||
with_items: "{{ apache_vhosts_ssl }}"
|
with_items: "{{ apache_vhosts_ssl }}"
|
||||||
no_log: true
|
no_log: "{{ apache_ssl_no_log }}"
|
||||||
|
|
||||||
- name: Add apache vhosts configuration.
|
- name: Add apache vhosts configuration.
|
||||||
template:
|
template:
|
||||||
|
|
Loading…
Reference in a new issue