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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,10 @@ Name | Type | Description | Notes
22
22
**name** | Option<**String**> | The name of the backend. |
23
23
**override_host** | Option<**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. |
24
24
**port** | Option<**i32**> | 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. |
25
-
**prefer_ipv6** | Option<**bool**> | Prefer IPv6 connections to origins for hostname backends. |
25
+
**prefer_ipv6** | Option<**bool**> | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |
26
26
**request_condition** | Option<**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. |
27
27
**share_key** | Option<**String**> | Value that when shared across backends will enable those backends to share the same health check. |
28
-
**shield** | Option<**String**> | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |
28
+
**shield** | Option<**String**> | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |
29
29
**ssl_ca_cert** | Option<**String**> | CA certificate attached to origin. |
30
30
**ssl_cert_hostname** | Option<**String**> | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |
31
31
**ssl_check_cert** | Option<**bool**> | Be strict on checking SSL certs. | [default to true]
Copy file name to clipboardExpand all lines: docs/BackendApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ Name | Type | Description | Required | Notes
50
50
**name** | Option\<**String**> | The name of the backend. | |
51
51
**override_host** | Option\<**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. | |
52
52
**port** | Option\<**i32**> | 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. | |
53
-
**prefer_ipv6** | Option\<**bool**> | Prefer IPv6 connections to origins for hostname backends. | |
53
+
**prefer_ipv6** | Option\<**bool**> | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. | |
54
54
**request_condition** | Option\<**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. | |
55
55
**share_key** | Option\<**String**> | Value that when shared across backends will enable those backends to share the same health check. | |
56
-
**shield** | Option\<**String**> | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | |
56
+
**shield** | Option\<**String**> | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). | |
57
57
**ssl_ca_cert** | Option\<**String**> | CA certificate attached to origin. | |
58
58
**ssl_cert_hostname** | Option\<**String**> | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | |
59
59
**ssl_check_cert** | Option\<**bool**> | Be strict on checking SSL certs. | |[default to true]
@@ -233,10 +233,10 @@ Name | Type | Description | Required | Notes
233
233
**name** | Option\<**String**> | The name of the backend. | |
234
234
**override_host** | Option\<**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. | |
235
235
**port** | Option\<**i32**> | 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. | |
236
-
**prefer_ipv6** | Option\<**bool**> | Prefer IPv6 connections to origins for hostname backends. | |
236
+
**prefer_ipv6** | Option\<**bool**> | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. | |
237
237
**request_condition** | Option\<**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. | |
238
238
**share_key** | Option\<**String**> | Value that when shared across backends will enable those backends to share the same health check. | |
239
-
**shield** | Option\<**String**> | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | |
239
+
**shield** | Option\<**String**> | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). | |
240
240
**ssl_ca_cert** | Option\<**String**> | CA certificate attached to origin. | |
241
241
**ssl_cert_hostname** | Option\<**String**> | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | |
242
242
**ssl_check_cert** | Option\<**bool**> | Be strict on checking SSL certs. | |[default to true]
Copy file name to clipboardExpand all lines: docs/BackendResponse.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,10 @@ Name | Type | Description | Notes
22
22
**name** | Option<**String**> | The name of the backend. |
23
23
**override_host** | Option<**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. |
24
24
**port** | Option<**i32**> | 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. |
25
-
**prefer_ipv6** | Option<**bool**> | Prefer IPv6 connections to origins for hostname backends. |
25
+
**prefer_ipv6** | Option<**bool**> | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |
26
26
**request_condition** | Option<**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. |
27
27
**share_key** | Option<**String**> | Value that when shared across backends will enable those backends to share the same health check. |
28
-
**shield** | Option<**String**> | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |
28
+
**shield** | Option<**String**> | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |
29
29
**ssl_ca_cert** | Option<**String**> | CA certificate attached to origin. |
30
30
**ssl_cert_hostname** | Option<**String**> | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |
31
31
**ssl_check_cert** | Option<**bool**> | Be strict on checking SSL certs. | [default to true]
0 commit comments