2018-01-10 23:40:01 +01:00
|
|
|
---
|
|
|
|
# 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'.
|
2018-02-20 21:28:14 +01:00
|
|
|
# Default is mainline.
|
2018-01-10 23:40:01 +01:00
|
|
|
branch: mainline
|
2018-02-09 21:00:58 +01:00
|
|
|
# Install nginscript, perl, waf, geoip, image-filter, rtmp and/or xslt modules.
|
2018-01-10 23:40:01 +01:00
|
|
|
# Default is false.
|
2018-01-19 19:27:47 +01:00
|
|
|
modules:
|
|
|
|
njs: false
|
|
|
|
perl: false
|
|
|
|
waf: false
|
2018-02-09 21:00:58 +01:00
|
|
|
geoip: false
|
2018-02-09 21:14:18 +01:00
|
|
|
image_filter: false
|
2018-02-09 21:00:58 +01:00
|
|
|
rtmp: false
|
|
|
|
xslt: false
|
2018-01-10 23:40:01 +01:00
|
|
|
# Install NGINX Amplify.
|
|
|
|
# Use your NGINX Amplify API key.
|
|
|
|
# Default is null.
|
2018-02-20 21:28:14 +01:00
|
|
|
amplify_enable: false
|
|
|
|
amplify_key: null
|
2018-01-10 23:40:01 +01:00
|
|
|
# Enable NGINX status data.
|
|
|
|
# Will enable 'stub_status' in open source NGINX and 'status' in NGINX Plus.
|
|
|
|
# Default is false.
|
2018-02-20 21:28:14 +01:00
|
|
|
status_enable: false
|
|
|
|
# Enable NGINX Plus REST API and write access.
|
|
|
|
# Default is false.
|
|
|
|
rest_api_enable: false
|
|
|
|
rest_api_write: false
|
|
|
|
# Enable NGINX Plus dashboard. REST API also needs to be enabled.
|
|
|
|
# Default is false.
|
|
|
|
dashboard: false
|
2018-01-10 23:40:01 +01:00
|
|
|
# Location of your NGINX Plus license in your local machine.
|
2018-01-17 18:13:44 +01:00
|
|
|
# Default is the files folder within the NGINX Ansible role.
|
2018-01-10 23:40:01 +01:00
|
|
|
license:
|
2018-01-26 20:00:26 +01:00
|
|
|
certificate: license/nginx-repo.crt
|
|
|
|
key: license/nginx-repo.key
|
2018-02-20 21:28:14 +01:00
|
|
|
# Enable uploading NGINX configuration files to your system.
|
|
|
|
# Default for uploading files is false.
|
|
|
|
# Default location of files is the files folder within the NGINX Ansible role.
|
|
|
|
main_push_enable: false
|
|
|
|
main_push_location: conf/nginx.conf
|
|
|
|
http_push_enable: false
|
|
|
|
http_push_location: conf/http/*.conf
|
|
|
|
stream_push_enable: false
|
|
|
|
stream_push_location: conf/stream/*.conf
|
2018-01-26 20:00:26 +01:00
|
|
|
# Configuration variables to create a templated NGINX configuration.
|
|
|
|
# Defaults are the values found in a fresh NGINX installation.
|
2018-02-20 21:28:14 +01:00
|
|
|
main_template_enable: false
|
|
|
|
main_template_user: nginx
|
|
|
|
main_template_worker_processes: auto
|
|
|
|
main_template_error_level: warn
|
|
|
|
main_template_worker_connections: 1024
|
|
|
|
main_template_keepalive_timeout: 65
|
|
|
|
http_template_enable: false
|
|
|
|
http_template_listen: 80
|
|
|
|
http_template_server_name: localhost
|
|
|
|
stream_template_enable: false
|
|
|
|
stream_template_listen: 12345
|