File tree Expand file tree Collapse file tree 3 files changed +34
-34
lines changed Expand file tree Collapse file tree 3 files changed +34
-34
lines changed Original file line number Diff line number Diff line change @@ -146,8 +146,8 @@ nginx_config_http_template:
146
146
147
147
sub_filter :
148
148
# sub_filters: []
149
- last_modified : " off "
150
- once : " on "
149
+ last_modified : false
150
+ once : true
151
151
types : " text/html"
152
152
# custom_options: []
153
153
web_server :
@@ -193,8 +193,8 @@ nginx_config_http_template:
193
193
# url: https://sso.somehost.local/?url=https://$http_host$request_uri
194
194
sub_filter :
195
195
# sub_filters: []
196
- last_modified : " off "
197
- once : " on "
196
+ last_modified : false
197
+ once : true
198
198
types : " text/html"
199
199
# custom_options: []
200
200
http_demo_conf : false
@@ -301,8 +301,8 @@ nginx_config_http_template:
301
301
# url: https://sso.somehost.local/?url=https://$http_host$request_uri
302
302
sub_filter :
303
303
# sub_filters: []
304
- last_modified : " off "
305
- once : " on "
304
+ last_modified : false
305
+ once : true
306
306
types : " text/html"
307
307
# custom_options: []
308
308
health_check_plus : false
Original file line number Diff line number Diff line change 44
44
keyval : false
45
45
server_tokens : " off"
46
46
sub_filter :
47
- last_modified : " off "
48
- once : " on "
47
+ last_modified : false
48
+ once : true
49
49
http_global_autoindex : false
50
50
custom_options :
51
51
- master_process on;
110
110
value : max-age=15768000; includeSubDomains
111
111
always : true
112
112
sub_filter :
113
- last_modified : " off "
114
- once : " on "
113
+ last_modified : false
114
+ once : true
115
115
reverse_proxy :
116
116
locations :
117
117
frontend :
164
164
proxy_buffering : false
165
165
client_max_body_size : 5m
166
166
sub_filter :
167
- last_modified : " off "
168
- once : " on "
167
+ last_modified : false
168
+ once : true
169
169
backend :
170
170
location : /backend
171
171
proxy_pass : http://backend_servers/
290
290
- " 'nginx_version' '$nginx_version'"
291
291
- " 'document_root' '$document_root'"
292
292
- " 'proxied_for_ip' '$http_x_forwarded_for'"
293
- last_modified : " off "
294
- once : " off "
293
+ last_modified : false
294
+ once : false
295
295
web_server :
296
296
locations :
297
297
frontend_site :
302
302
html_file_name : frontend_index.html
303
303
autoindex : false
304
304
sub_filter :
305
- last_modified : " off "
306
- once : " off "
305
+ last_modified : false
306
+ once : false
307
307
http_demo_conf : false
308
308
backend :
309
309
template_file : http/default.conf.j2
330
330
- " 'nginx_version' '$nginx_version'"
331
331
- " 'document_root' '$document_root'"
332
332
- " 'proxied_for_ip' '$http_x_forwarded_for'"
333
- last_modified : " off "
334
- once : " off "
333
+ last_modified : false
334
+ once : false
335
335
web_server :
336
336
locations :
337
337
backend_site :
354
354
- include fastcgi_params;
355
355
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
356
356
sub_filter :
357
- last_modified : " off "
358
- once : " off "
357
+ last_modified : false
358
+ once : false
359
359
http_demo_conf : false
360
360
361
361
nginx_config_html_demo_template_enable : true
Original file line number Diff line number Diff line change 50
50
keyval : false
51
51
server_tokens : " off"
52
52
sub_filter :
53
- last_modified : " off "
54
- once : " on "
53
+ last_modified : false
54
+ once : true
55
55
http_global_autoindex : false
56
56
custom_options :
57
57
- master_process on;
118
118
value : max-age=15768000; includeSubDomains
119
119
always : true
120
120
sub_filter :
121
- last_modified : " off "
122
- once : " on "
121
+ last_modified : false
122
+ once : true
123
123
reverse_proxy :
124
124
locations :
125
125
frontend :
175
175
proxy_buffering : false
176
176
client_max_body_size : 5m
177
177
sub_filter :
178
- last_modified : " off "
179
- once : " on "
178
+ last_modified : false
179
+ once : true
180
180
backend :
181
181
location : /backend
182
182
proxy_pass : http://backend_servers/
301
301
- " 'nginx_version' '$nginx_version'"
302
302
- " 'document_root' '$document_root'"
303
303
- " 'proxied_for_ip' '$http_x_forwarded_for'"
304
- last_modified : " off "
305
- once : " off "
304
+ last_modified : false
305
+ once : false
306
306
# types: "text/html"
307
307
web_server :
308
308
locations :
314
314
html_file_name : frontend_index.html
315
315
autoindex : false
316
316
sub_filter :
317
- last_modified : " off "
318
- once : " off "
317
+ last_modified : false
318
+ once : false
319
319
http_demo_conf : false
320
320
backend :
321
321
template_file : http/default.conf.j2
342
342
- " 'nginx_version' '$nginx_version'"
343
343
- " 'document_root' '$document_root'"
344
344
- " 'proxied_for_ip' '$http_x_forwarded_for'"
345
- last_modified : " off "
346
- once : " off "
345
+ last_modified : false
346
+ once : false
347
347
web_server :
348
348
locations :
349
349
backend_site :
366
366
- include fastcgi_params;
367
367
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
368
368
sub_filter :
369
- last_modified : " off "
370
- once : " off "
369
+ last_modified : false
370
+ once : false
371
371
http_demo_conf : false
372
372
nginx_config_html_demo_template_enable : true
373
373
nginx_config_html_demo_template :
You can’t perform that action at this time.
0 commit comments