Alan Orth
ad8a704470
Details, see: - https://jve.linuxwall.info/blog/index.php?post/2014/10/09/Automated-configuration-analysis-for-Mozilla-s-TLS-guidelines - https://wiki.mozilla.org/Security/Server_Side_TLS Signed-off-by: Alan Orth <alan.orth@gmail.com>
17 lines
303 B
YAML
17 lines
303 B
YAML
---
|
|
# file: roles/nginx/defaults/main.yml
|
|
|
|
# path config
|
|
nginx_confd_path: /etc/nginx/conf.d
|
|
|
|
# parent directory of vhost roots
|
|
nginx_root_prefix: /var/www
|
|
|
|
# TLS protocol versions to support
|
|
nginx_tls_protocols: TLSv1.1 TLSv1.2
|
|
|
|
# TLS key directory
|
|
tls_key_dir: /etc/ssl/private
|
|
|
|
# vim: set ts=2 sw=2:
|