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 @@
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 to origins for hostname backends. |[optional]|
25
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |[optional]|
26
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]|
27
27
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
28
-
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
28
+
|**shield**|**String**| Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |[optional]|
29
29
|**ssl_ca_cert**|**String**| CA certificate attached to origin. |[optional]|
30
30
|**ssl_cert_hostname**|**String**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |[optional]|
31
31
|**ssl_check_cert**|**Boolean**| Be strict on checking SSL certs. |[optional][default to true]|
Copy file name to clipboardExpand all lines: docs/BackendApi.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,10 +53,10 @@ 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 to origins for hostname backends.
56
+
prefer_ipv6:true, # Boolean | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services.
57
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.
58
58
share_key:'share_key_example', # String | Value that when shared across backends will enable those backends to share the same health check.
59
-
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding).
59
+
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/).
60
60
ssl_ca_cert:'ssl_ca_cert_example', # String | CA certificate attached to origin.
61
61
ssl_cert_hostname:'ssl_cert_hostname_example', # String | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all.
62
62
ssl_check_cert:true, # Boolean | Be strict on checking SSL certs.
@@ -106,10 +106,10 @@ end
106
106
|**name**|**String**| The name of the backend. |[optional]|
107
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]|
108
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 to origins for hostname backends. |[optional]|
109
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |[optional]|
110
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]|
111
111
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
112
-
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
112
+
|**shield**|**String**| Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |[optional]|
113
113
|**ssl_ca_cert**|**String**| CA certificate attached to origin. |[optional]|
114
114
|**ssl_cert_hostname**|**String**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |[optional]|
115
115
|**ssl_check_cert**|**Boolean**| Be strict on checking SSL certs. |[optional][default to true]|
@@ -286,10 +286,10 @@ opts = {
286
286
name:'name_example', # String | The name of the backend.
287
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.
288
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 to origins for hostname backends.
289
+
prefer_ipv6:true, # Boolean | Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services.
290
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.
291
291
share_key:'share_key_example', # String | Value that when shared across backends will enable those backends to share the same health check.
292
-
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding).
292
+
shield:'shield_example', # String | Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/).
293
293
ssl_ca_cert:'ssl_ca_cert_example', # String | CA certificate attached to origin.
294
294
ssl_cert_hostname:'ssl_cert_hostname_example', # String | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all.
295
295
ssl_check_cert:true, # Boolean | Be strict on checking SSL certs.
@@ -340,10 +340,10 @@ end
340
340
|**name**|**String**| The name of the backend. |[optional]|
341
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]|
342
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 to origins for hostname backends. |[optional]|
343
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |[optional]|
344
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]|
345
345
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
346
-
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
346
+
|**shield**|**String**| Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |[optional]|
347
347
|**ssl_ca_cert**|**String**| CA certificate attached to origin. |[optional]|
348
348
|**ssl_cert_hostname**|**String**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |[optional]|
349
349
|**ssl_check_cert**|**Boolean**| Be strict on checking SSL certs. |[optional][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 @@
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 to origins for hostname backends. |[optional]|
25
+
|**prefer_ipv6**|**Boolean**| Prefer IPv6 connections to origins for hostname backends. Default is 'false' for Delivery services and 'true' for Compute services. |[optional]|
26
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]|
27
27
|**share_key**|**String**| Value that when shared across backends will enable those backends to share the same health check. |[optional]|
28
-
|**shield**|**String**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). |[optional]|
28
+
|**shield**|**String**| Identifier of the POP to use as a [shield](https://www.fastly.com/documentation/guides/getting-started/hosts/shielding/). |[optional]|
29
29
|**ssl_ca_cert**|**String**| CA certificate attached to origin. |[optional]|
30
30
|**ssl_cert_hostname**|**String**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. |[optional]|
31
31
|**ssl_check_cert**|**Boolean**| Be strict on checking SSL certs. |[optional][default to true]|
0 commit comments