From d109072a37a980e42de90bdb3da0125116a79c8b Mon Sep 17 00:00:00 2001 From: Alessandro Fael Garcia Date: Wed, 17 Jan 2018 09:13:44 -0800 Subject: [PATCH] Change default location of NGINX license --- .gitignore | 4 ++++ README.md | 5 +++-- defaults/main.yml | 5 +++-- 3 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..921df63 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# Any private crt and keys # +############################ +*.crt +*.key diff --git a/README.md b/README.md index f6605ab..9c501b8 100644 --- a/README.md +++ b/README.md @@ -101,9 +101,10 @@ This role has multiple variables. The defaults for all these variables are the f # Default is false. status: false # Location of your NGINX Plus license in your local machine. + # Default is the files folder within the NGINX Ansible role license: - certificate: ~/.ssh/ngx-certs/nginx-repo.crt - key: ~/.ssh/ngx-certs/nginx-repo.key + certificate: nginx-repo.crt + key: nginx-repo.key Dependencies ------------ diff --git a/defaults/main.yml b/defaults/main.yml index acbeb01..658a0f8 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -22,6 +22,7 @@ amplify: null # Default is false. status: false # Location of your NGINX Plus license in your local machine. +# Default is the files folder within the NGINX Ansible role. license: - certificate: ~/.ssh/ngx-certs/nginx-repo.crt - key: ~/.ssh/ngx-certs/nginx-repo.key + certificate: nginx-repo.crt + key: nginx-repo.key