File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ FEATURES:
9
9
10
10
BUG FIXES:
11
11
12
+ - Fix the default path for the stream template deployment location.
12
13
- Fix incompatibility when using the ` listen ` directive and setting both the ` quic ` and ` so_keepalive ` parameters.
13
14
- Correct cleanup error when ` nginx_config_cleanup_paths ` is not defined.
14
15
Original file line number Diff line number Diff line change 120
120
- name : Dynamically generate NGINX stream config files
121
121
ansible.builtin.template :
122
122
src : " {{ item['template_file'] | default('stream/default.conf.j2') }}"
123
- dest : " {{ item['deployment_location'] | default('/etc/nginx/conf.d/stream_default.conf') }}"
123
+ dest : " {{ item['deployment_location'] | default('/etc/nginx/conf.d/stream/ stream_default.conf') }}"
124
124
backup : true
125
125
mode : " 0644"
126
126
loop : " {{ nginx_config_stream_template }}"
127
127
loop_control :
128
- label : " {{ item['deployment_location'] | default('/etc/nginx/conf.d/stream_default.conf') }}"
128
+ label : " {{ item['deployment_location'] | default('/etc/nginx/conf.d/stream/ stream_default.conf') }}"
129
129
notify : (Handler - NGINX Config) Run NGINX
130
130
when : nginx_config_stream_template_enable | bool
You can’t perform that action at this time.
0 commit comments