@@ -81,7 +81,7 @@ nginx_config_http_template:
81
81
deployment_location : /etc/nginx/conf.d/default.conf
82
82
backup : true
83
83
config :
84
- upstreams : # Configure NGINX upstreams
84
+ upstreams : # Configure upstreams
85
85
- name : backend # Required
86
86
servers : # Cannot be used if 'state' directive is defined
87
87
- address : localhost # Required -- You can use an IP address, a Unix socket, or a domain -- include port details inline if necessary
@@ -346,7 +346,7 @@ nginx_config_http_template:
346
346
enable : true # Required
347
347
uri : example.com
348
348
port : 80
349
- proxy : # Configure Proxy
349
+ proxy : # Configure proxy settings
350
350
bind : # Set to 'false' and remove/comment nested variables to disable proxy_bind
351
351
address : 0.0.0.0 # Required
352
352
transparent : false # Boolean
@@ -501,7 +501,7 @@ nginx_config_http_template:
501
501
ssl_trusted_certificate : /path/to/file
502
502
ssl_verify : false # Boolean
503
503
ssl_verify_depth : 1
504
- access : # Configure HTTP access
504
+ access : # Configure access settings
505
505
allow : localhost # String or a list of strings
506
506
deny : 192.168.1.100 # String or a list of strings
507
507
auth_basic : # Configure basic auth
@@ -528,7 +528,7 @@ nginx_config_http_template:
528
528
leeway : 0s
529
529
type : signed # Can be set to 'signed', 'encrypted' or 'nested'
530
530
require : $valid_jwt_iss # String or a list of strings
531
- api : # Available only in NGINX Plus -- Configure NGINX Plus HTTP API
531
+ api : # Available only in NGINX Plus -- Configure HTTP API
532
532
enable : # true # Set to Boolean directly to simply enable the 'api' directive -- Available only in the 'location' context
533
533
write : true # Boolean
534
534
status_zone : one # Not available in the 'http' context
@@ -567,7 +567,7 @@ nginx_config_http_template:
567
567
expires : # false # Can alternatively be set to 'false'
568
568
modified : true # Boolean
569
569
time : " 12h"
570
- health_check : # Available only in NGINX Plus -- Configure NGINX Plus health checks
570
+ health_check : # Available only in NGINX Plus -- Configure active health checks
571
571
health_checks : # Available only in the 'location' context
572
572
- interval : 5s
573
573
jitter : 0
@@ -583,7 +583,7 @@ nginx_config_http_template:
583
583
match : # Available only in the 'http' context
584
584
- name : name # Required
585
585
conditions : []
586
- keyval : # Available only in NGINX Plus -- Configure NGINX Plus key value store
586
+ keyval : # Available only in NGINX Plus -- Configure key value store
587
587
keyvals : # Available only in the 'http' context
588
588
- key : key # Required
589
589
variable : $var # Required
@@ -646,14 +646,14 @@ nginx_config_http_template:
646
646
content : # Dictionary or list of dictionaries
647
647
- value : default
648
648
new_value : 0
649
- mirror : # Configure Mirror directives
649
+ mirror : # Configure mirrors
650
650
request_body : true # Boolean
651
- uri : false # Required -- String or a list of strings -- Can alternatively be set to 'false'
652
- realip : # Configure RealIP directives
651
+ uri : false # String or a list of strings -- Can alternatively be set to 'false'
652
+ realip : # Configure RealIP
653
653
set_real_ip_from : 0.0.0.0
654
654
real_ip_header : X-Real-IP
655
655
real_ip_recursive : false # Boolean
656
- rewrite : # Configure rewrite directives
656
+ rewrite : # Configure rewrites
657
657
return : # Can also be set to a return URL or code directly -- Not available in the 'http' context
658
658
code : 200 # Required -- You have to set either 'code' or 'url'
659
659
text : text # Only available when using 'code'
@@ -675,7 +675,7 @@ nginx_config_http_template:
675
675
value : appv2 # Required
676
676
- percentage : " *" # Required
677
677
value : app # Required
678
- sub_filter : # Configure sub_filter directives
678
+ sub_filter : # Configure sub filters
679
679
sub_filters : # Dictionary or a list of dictionaries
680
680
- string : server_hostname # Required
681
681
replacement : $hostname # Required
@@ -747,7 +747,7 @@ nginx_config_stream_template:
747
747
- template_file : stream/default.conf.j2
748
748
deployment_location : /etc/nginx/conf.d/streams/stream_default.conf
749
749
config :
750
- upstreams : # Configure NGINX upstreamds
750
+ upstreams : # Configure upstreams
751
751
- name : stream_upstream # Required
752
752
servers :
753
753
- address : 0.0.0.0:9091 # Required
@@ -811,7 +811,7 @@ nginx_config_stream_template:
811
811
tcp_nodelay : true # Boolean
812
812
variables_hash_bucket_size : 64
813
813
variables_hash_max_size : 1024
814
- ssl : # Configure Stream SSL
814
+ ssl : # Configure SSL
815
815
alpn : http/1.1 # String or a list of strings
816
816
certificate : /etc/ssl/certs/molecule.crt # String or a list of strings
817
817
certificate_key : /etc/ssl/private/molecule.key # String or a list of strings
@@ -844,7 +844,7 @@ nginx_config_stream_template:
844
844
trusted_certificate : /path/to/file
845
845
verify_client : false # Boolean -- Can also be set to 'optional' or 'optional_no_ca'
846
846
verify_depth : 1 # Number
847
- proxy : # Configure Stream Proxy
847
+ proxy : # Configure proxy settings
848
848
bind : # Set to 'false' and remove/comment nested variables to disable proxy_bind
849
849
address : 0.0.0.0 # Required
850
850
transparent : false # Boolean
@@ -878,7 +878,7 @@ nginx_config_stream_template:
878
878
ssl_verify_depth : 1 # Number
879
879
timeout : 10m
880
880
upload_rate : 0
881
- health_check : # Available only in NGINX Plus -- Configure NGINX Plus health checks
881
+ health_check : # Available only in NGINX Plus -- Configure active health checks
882
882
health_checks : # Available only in the 'server' context
883
883
- interval : 5s
884
884
jitter : 0
@@ -895,7 +895,7 @@ nginx_config_stream_template:
895
895
conditions :
896
896
- status 200
897
897
timeout : 60s
898
- keyval : # Available only in NGINX Plus -- Configure NGINX Plus key value store
898
+ keyval : # Available only in NGINX Plus -- Configure key value store
899
899
keyvals : # Available only in the 'stream' context
900
900
- key : key # Required
901
901
variable : $var # Required
0 commit comments