File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ FEATURES:
7
7
- Add validation tasks to check the Ansible version, the Jinja2 version, and whether the required Ansible collections for this role are installed.
8
8
- Bump the Ansible ` community.general ` collection to ` 9.2.0 ` , ` community.crypto ` collection to ` 2.21.1 ` and ` community.docker ` collection to ` 3.11.0 ` .
9
9
- Add templating support for the ` ngx_mgmt_module ` , ` ngx_http_gzip_static_module ` , and ` ngx_stream_map_module ` NGINX modules.
10
+ - Now support uwsgi using the uwsgi_pass directive
10
11
11
12
BUG FIXES:
12
13
Original file line number Diff line number Diff line change @@ -293,6 +293,7 @@ nginx_config_http_template:
293
293
underscores_in_headers : false # Boolean -- Not available in the 'location' context
294
294
variables_hash_bucket_size : 64 # Available only in the 'http' context
295
295
variables_hash_max_size : 1024 # Available only in the 'http' context
296
+ uwsgi_pass : upstreamserver # Available only in the 'location' context
296
297
http2 : # Configure HTTP2
297
298
enable : false # Boolean -- Not available in the 'location' context
298
299
body_preread_size : 64k # Not available in the 'location' context
Original file line number Diff line number Diff line change @@ -289,5 +289,8 @@ variables_hash_bucket_size {{ core['variables_hash_bucket_size'] }};
289
289
{% if core ['variables_hash_max_size' ] is defined %} {# 'variables_hash_max_size' directive is only available in the 'http' context #}
290
290
variables_hash_max_size {{ core['variables_hash_max_size'] }};
291
291
{% endif %}
292
+ {% if core ['uwsgi_pass' ] is defined %} {# 'uwsgi_pass' directive is only available in the 'location' context #}
293
+ uwsgi_pass {{ core['uwsgi_pass'] }};
294
+ {% endif %}
292
295
293
296
{% endmacro %}
You can’t perform that action at this time.
0 commit comments