78a7e3efeb
* Add option to enable REST API * Add option to enable live dashboard * Add option to install WAF module * Load modules in nginx.conf * Improve version check for RedHat distros
35 lines
930 B
YAML
35 lines
930 B
YAML
---
|
|
# Specify which version of NGINX you want to install.
|
|
# Options are 'opensource' or 'plus'.
|
|
# Default is 'opensource'.
|
|
type: opensource
|
|
# Specify which branch of Open Source NGINX you want to install.
|
|
# Options are 'mainline' or 'stable'.
|
|
# Default is stable.
|
|
branch: mainline
|
|
# Install nginscript, perl and/or waf modules.
|
|
# Default is false.
|
|
modules:
|
|
njs: false
|
|
perl: false
|
|
waf: false
|
|
# Install NGINX Amplify.
|
|
# Use your NGINX Amplify API key.
|
|
# Default is null.
|
|
amplify: null
|
|
# Enable NGINX status data.
|
|
# Will enable 'stub_status' in open source NGINX and 'status' in NGINX Plus.
|
|
# Default is false.
|
|
status: false
|
|
# Enable NGINX Plus REST API and dashboard.
|
|
# Default is false.
|
|
api:
|
|
enable: false
|
|
write: false
|
|
dashboard: false
|
|
# Location of your NGINX Plus license in your local machine.
|
|
# Default is the files folder within the NGINX Ansible role.
|
|
license:
|
|
certificate: nginx-repo.crt
|
|
key: nginx-repo.key
|