Skip to content

Commit 1c55c91

Browse files
author
Guy Bedford
authored
fix: doc links for deploy (#1011)
1 parent c175b22 commit 1c55c91

File tree

716 files changed

+9
-26109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

716 files changed

+9
-26109
lines changed

documentation/docs/backend/setDefaultDynamicBackendConfig.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
1717
- `connectTimeout` _: number_ _**optional**_
1818
- Maximum duration in milliseconds to wait for a connection to this backend to be established.
1919
- If exceeded, the connection is aborted and a 503 response will be presented instead.
20-
- Throws a [`RangeError`](../../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
20+
- Throws a [`RangeError`](../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
2121
- `firstByteTimeout` _: number_ _**optional**_
2222
- Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent.
2323
- If exceeded, the connection is aborted and a 503 response will be presented instead.
24-
- Throws a [`RangeError`](../../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
24+
- Throws a [`RangeError`](../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
2525
- `betweenBytesTimeout` _: number_ _**optional**_
2626
- Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend.
2727
- If exceeded, the response received so far will be considered complete and the fetch will end.
28-
- Throws a [`RangeError`](../../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
28+
- Throws a [`RangeError`](../globals/RangeError/RangeError.mdx) if the value is negative or greater than or equal to 2^32
2929
- `useSSL` _: boolean_ _**optional**_
3030
- Whether or not to require TLS for connections to this backend.
3131
- `dontPool` _: boolean_ _**optional**_
@@ -37,28 +37,28 @@ The **`setDefaultDynamicBackendConfig()`** allows setting backend configuration
3737
- `tlsMinVersion` _: 1 | 1.1 | 1.2 | 1.3_ _**optional**_
3838
- Minimum allowed TLS version on SSL connections to this backend.
3939
- If the backend server is not able to negotiate a connection meeting this constraint, a 503 response will be presented instead.
40-
- Throws a [`RangeError`](../../globals/RangeError/RangeError.mdx) if the value is not 1, 1.1, 1.2, or 1.3
40+
- Throws a [`RangeError`](../globals/RangeError/RangeError.mdx) if the value is not 1, 1.1, 1.2, or 1.3
4141
- `tlsMaxVersion` _: 1 | 1.1 | 1.2 | 1.3_ _**optional**_
4242
- Maximum allowed TLS version on SSL connections to this backend.
4343
- If the backend server is not able to negotiate a connection meeting this constraint, a 503 response will be presented instead.
44-
- Throws a [`RangeError`](../../globals/RangeError/RangeError.mdx) if the value is not 1, 1.1, 1.2, or 1.3
44+
- Throws a [`RangeError`](../globals/RangeError/RangeError.mdx) if the value is not 1, 1.1, 1.2, or 1.3
4545
- `certificateHostname` _: string_ _**optional**_
4646
- Define the hostname that the server certificate should declare.
47-
- Throws a [`TypeError`](../../globals/TypeError/TypeError.mdx) if the value is an empty string.
47+
- Throws a [`TypeError`](../globals/TypeError/TypeError.mdx) if the value is an empty string.
4848
- `caCertificate` _: string_ _**optional**_
4949
- The CA certificate to use when checking the validity of the backend.
50-
- Throws a [`TypeError`](../../globals/TypeError/TypeError.mdx) if the value is an empty string.
50+
- Throws a [`TypeError`](../globals/TypeError/TypeError.mdx) if the value is an empty string.
5151
- `ciphers` _: string_ _**optional**_
5252
- List of OpenSSL ciphers to support for connections to this origin.
5353
- If the backend server is not able to negotiate a connection meeting this constraint, a 503 response will be presented instead.
5454
- [List of ciphers supported by Fastly](https://developer.fastly.com/learning/concepts/routing-traffic-to-fastly/#use-a-tls-configuration).
55-
- Throws a [`TypeError`](../../globals/TypeError/TypeError.mdx) if the value is an empty string.
55+
- Throws a [`TypeError`](../globals/TypeError/TypeError.mdx) if the value is an empty string.
5656
- `clientCertificate` _: object_ _**optional**_
5757
- The client certificate to provide for the TLS handshake
5858
- `certificate` _: string_
5959
- The PEM certificate string.
6060
- `key` _: SecretStoreEntry_
61-
- The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../../fastly:secret-store/SecretStore/fromBytes.mdx).
61+
- The `SecretStoreEntry` to use for the key, created via [`SecretStore.prototype.get`](../fastly:secret-store/SecretStore/prototype/get.mdx) or alteratively via [`SecretStore.fromBytes`](../fastly:secret-store/SecretStore/fromBytes.mdx).
6262
- `httpKeepalive` _: number_ _**optional**_
6363
- Enable HTTP keepalive, setting the timout in milliseconds.
6464
- `tcpKeepalive` _: boolean | object_ _**optional**_

documentation/versioned_docs/version-3.24.1/backend/Backend/Backend.mdx

Lines changed: 0 additions & 188 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/exists.mdx

Lines changed: 0 additions & 20 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/fromName.mdx

Lines changed: 0 additions & 20 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/health.mdx

Lines changed: 0 additions & 31 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/prototype/betweenBytesTimeout.mdx

Lines changed: 0 additions & 18 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/prototype/connectTimeout.mdx

Lines changed: 0 additions & 18 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/prototype/firstByteTimeout.mdx

Lines changed: 0 additions & 18 deletions
This file was deleted.

documentation/versioned_docs/version-3.24.1/backend/Backend/prototype/health.mdx

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)