You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Backend.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@
22
22
|**name**|**String**| The name of the backend. |[optional]|
23
23
|**override_host**|**String**| If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL. |[optional]|
24
24
|**port**|**Integer**| Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request. |[optional]|
25
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections for DNS hostname lookups. |[optional]|
25
26
|**request_condition**|**String**| Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests. |[optional]|
26
27
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
27
28
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
Copy file name to clipboardExpand all lines: docs/BackendApi.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ opts = {
53
53
name:'name_example', # String | The name of the backend.
54
54
override_host:'override_host_example', # String | If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL.
55
55
port:56, # Integer | Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request.
56
+
prefer_ipv6:true, # Boolean | Prefer IPv6 connections for DNS hostname lookups.
56
57
request_condition:'request_condition_example', # String | Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests.
57
58
share_key:'share_key_example', # String | Value that when shared across backends will enable those backends to share the same health check.
58
59
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding).
@@ -105,6 +106,7 @@ end
105
106
|**name**|**String**| The name of the backend. |[optional]|
106
107
|**override_host**|**String**| If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL. |[optional]|
107
108
|**port**|**Integer**| Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request. |[optional]|
109
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections for DNS hostname lookups. |[optional]|
108
110
|**request_condition**|**String**| Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests. |[optional]|
109
111
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
110
112
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
@@ -284,6 +286,7 @@ opts = {
284
286
name:'name_example', # String | The name of the backend.
285
287
override_host:'override_host_example', # String | If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL.
286
288
port:56, # Integer | Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request.
289
+
prefer_ipv6:true, # Boolean | Prefer IPv6 connections for DNS hostname lookups.
287
290
request_condition:'request_condition_example', # String | Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests.
288
291
share_key:'share_key_example', # String | Value that when shared across backends will enable those backends to share the same health check.
289
292
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding).
@@ -337,6 +340,7 @@ end
337
340
|**name**|**String**| The name of the backend. |[optional]|
338
341
|**override_host**|**String**| If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL. |[optional]|
339
342
|**port**|**Integer**| Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request. |[optional]|
343
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections for DNS hostname lookups. |[optional]|
340
344
|**request_condition**|**String**| Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests. |[optional]|
341
345
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
342
346
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
Copy file name to clipboardExpand all lines: docs/BackendResponse.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@
22
22
|**name**|**String**| The name of the backend. |[optional]|
23
23
|**override_host**|**String**| If set, will replace the client-supplied HTTP `Host` header on connections to this backend. Applied after VCL has been processed, so this setting will take precedence over changing `bereq.http.Host` in VCL. |[optional]|
24
24
|**port**|**Integer**| Port on which the backend server is listening for connections from Fastly. Setting `port` to 80 or 443 will also set `use_ssl` automatically (to false and true respectively), unless explicitly overridden by setting `use_ssl` in the same request. |[optional]|
25
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections for DNS hostname lookups. |[optional]|
25
26
|**request_condition**|**String**| Name of a Condition, which if satisfied, will select this backend during a request. If set, will override any `auto_loadbalance` setting. By default, the first backend added to a service is selected for all requests. |[optional]|
26
27
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
27
28
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
0 commit comments