File tree Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 298
298
html_file_location : /usr/share/nginx/html
299
299
autoindex : false
300
300
custom_options :
301
- - fastcgi_split_path_info ^(.+\.php)(/.+)$
302
- - fastcgi_pass unix:/run/php/php7.2-fpm.sock
303
- - fastcgi_index index.php
304
- - include fastcgi_params
305
- - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name
301
+ - fastcgi_split_path_info ^(.+\.php)(/.+)$;
302
+ - fastcgi_pass unix:/run/php/php7.2-fpm.sock;
303
+ - fastcgi_index index.php;
304
+ - include fastcgi_params;
305
+ - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
306
306
sub_filter :
307
307
# sub_filters: []
308
308
last_modified : " off"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ upstream {{ item.value.upstreams[upstream].name }} {
17
17
{% endif %}
18
18
{% if item .value .upstreams [upstream ].custom_options is defined and item .value .upstreams [upstream ].custom_options | length %}
19
19
{% for inline_option in item .value .upstreams [upstream ].custom_options %}
20
- {{ inline_option }};
20
+ {{ inline_option }}
21
21
{% endfor %}
22
22
{% endif %}
23
23
}
@@ -72,7 +72,7 @@ auth_request_set {{ item.value.auth_request_set_http.name }} {{ item.value.auth_
72
72
73
73
{% if item .value .custom_options is defined and item .value .custom_options | length %}
74
74
{% for inline_option in item .value .custom_options %}
75
- {{ inline_option }};
75
+ {{ inline_option }}
76
76
{% endfor %}
77
77
{% endif %}
78
78
@@ -181,7 +181,7 @@ server {
181
181
{% endif %}
182
182
{% if item .value .servers [server ].custom_options is defined and item .value .servers [server ].custom_options | length %}
183
183
{% for inline_option in item .value .servers [server ].custom_options %}
184
- {{ inline_option }};
184
+ {{ inline_option }}
185
185
{% endfor %}
186
186
{% endif %}
187
187
@@ -370,7 +370,7 @@ server {
370
370
{% endif %}
371
371
{% if item .value .servers [server ].reverse_proxy .locations [location ].custom_options is defined and item .value .servers [server ].reverse_proxy .locations [location ].custom_options | length %}
372
372
{% for inline_option in item .value .servers [server ].reverse_proxy .locations [location ].custom_options %}
373
- {{ inline_option }};
373
+ {{ inline_option }}
374
374
{% endfor %}
375
375
{% endif %}
376
376
{% if (item .value .servers [server ].reverse_proxy .health_check_plus is defined ) and item .value .servers [server ].reverse_proxy .health_check_plus %}
@@ -403,7 +403,7 @@ server {
403
403
{% endif %}
404
404
{% if item .value .servers [server ].web_server .locations [location ].custom_options is defined and item .value .servers [server ].web_server .locations [location ].custom_options | length %}
405
405
{% for inline_option in item .value .servers [server ].web_server .locations [location ].custom_options %}
406
- {{ inline_option }};
406
+ {{ inline_option }}
407
407
{% endfor %}
408
408
{% endif %}
409
409
{% if item .value .servers [server ].web_server .locations [location ].proxy_hide_headers is defined %}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ worker_rlimit_nofile {{ nginx_main_template.worker_rlimit_nofile }};
40
40
41
41
{% if nginx_main_template .custom_options is defined and nginx_main_template .custom_options | length %}
42
42
{% for inline_option in nginx_main_template .custom_options %}
43
- {{ inline_option }};
43
+ {{ inline_option }}
44
44
{% endfor %}
45
45
{% endif %}
46
46
@@ -52,7 +52,7 @@ events {
52
52
worker_connections {{ nginx_main_template.worker_connections }};
53
53
{% if nginx_main_template .events_custom_options is defined and nginx_main_template .events_custom_options | length %}
54
54
{% for inline_option in nginx_main_template .events_custom_options %}
55
- {{ inline_option }};
55
+ {{ inline_option }}
56
56
{% endfor %}
57
57
{% endif %}
58
58
}
@@ -115,7 +115,7 @@ http {
115
115
{% endif %}
116
116
{% if nginx_main_template .http_custom_options is defined and nginx_main_template .http_custom_options | length %}
117
117
{% for inline_option in nginx_main_template .http_custom_options %}
118
- {{ inline_option }};
118
+ {{ inline_option }}
119
119
{% endfor %}
120
120
{% endif %}
121
121
include /etc/nginx/conf.d/*.conf;
@@ -126,7 +126,7 @@ http {
126
126
stream {
127
127
{% if nginx_main_template .stream_custom_options is defined and nginx_main_template .stream_custom_options | length %}
128
128
{% for inline_option in nginx_main_template .stream_custom_options %}
129
- {{ inline_option }};
129
+ {{ inline_option }}
130
130
{% endfor %}
131
131
{% endif %}
132
132
include /etc/nginx/conf.d/stream/*.conf;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ upstream {{ item.value.upstreams[upstream].name }} {
17
17
{% endif %}
18
18
{% if item .value .upstreams [upstream ].custom_options is defined and item .value .upstreams [upstream ].custom_options | length %}
19
19
{% for inline_option in item .value .upstreams [upstream ].custom_options %}
20
- {{ inline_option }};
20
+ {{ inline_option }}
21
21
{% endfor %}
22
22
{% endif %}
23
23
}
@@ -26,7 +26,7 @@ upstream {{ item.value.upstreams[upstream].name }} {
26
26
27
27
{% if item .value .custom_options is defined and item .value .custom_options | length %}
28
28
{% for inline_option in item .value .custom_options %}
29
- {{ inline_option }};
29
+ {{ inline_option }}
30
30
{% endfor %}
31
31
{% endif %}
32
32
@@ -105,7 +105,7 @@ server {
105
105
{% endif %}
106
106
{% if item .value .network_streams [stream ].custom_options is defined and item .value .network_streams [stream ].custom_options | length %}
107
107
{% for inline_option in item .value .network_streams [stream ].custom_options %}
108
- {{ inline_option }};
108
+ {{ inline_option }}
109
109
{% endfor %}
110
110
{% endif %}
111
111
}
You can’t perform that action at this time.
0 commit comments