Alan Orth
3746e798b6
A template is better than ansible's `apt_repository` module because we can idempotently control the contents of the file based on vari- ables. Signed-off-by: Alan Orth <alan.orth@gmail.com>
21 lines
372 B
YAML
21 lines
372 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 TLSv1.1 TLSv1.2
|
|
|
|
# TLS key directory
|
|
tls_key_dir: /etc/ssl/private
|
|
|
|
# stable is 1.8.x
|
|
# mainline is 1.9.x
|
|
nginx_version: mainline
|
|
|
|
# vim: set ts=2 sw=2:
|