Skip to content

Commit c48b7b3

Browse files
authored
docs: fix typos (#17)
1 parent eeefffe commit c48b7b3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ This ensure the Lambda handler remains at `index.mjs`.
169169

170170
#### CloudFront distribution
171171

172-
Create a CloudFront distribution, and dispatch requests to their cooresponding handlers (behaviors). The following behaviors are configured:
172+
Create a CloudFront distribution, and dispatch requests to their corresponding handlers (behaviors). The following behaviors are configured:
173173

174174
| Behavior | Requests | Origin | Allowed Headers |
175175
| ----------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -191,23 +191,23 @@ Note that if middleware is not used in the Next.js app, the `middleware-function
191191

192192
#### WORKAROUND: `public/` static files served out by server function (AWS specific)
193193

194-
Recall in the [S3 bucket](#s3-bucket) section, files in your app's `public/` folder are staitc, and are uploaded to the S3 bucket. Ideally, requests to these files should be handled by the S3 bucket. For example:
194+
Recall in the [S3 bucket](#s3-bucket) section, files in your app's `public/` folder are static, and are uploaded to the S3 bucket. Ideally, requests to these files should be handled by the S3 bucket. For example:
195195

196196
```
197197
https://my-nextjs-app.com/favicon.ico
198198
```
199199

200200
This requires the CloudFront distribution to have the behavior `/favicon.ico`, and set the S3 bucket as the origin. However, CloudFront has a [default limit of 25 behaviors per distribution](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html#limits-web-distributions). It is not a scalable solution to create 1 behavior per file.
201201

202-
To workaround the issue, requests to `public/` files are handled by the cache all behavior `/*`. The behavior sends the request to the server function first. And if the server fails to handle the request, it will fallback to the S3 bucket.
202+
To work around the issue, requests to `public/` files are handled by the cache all behavior `/*`. The behavior sends the request to the server function first. And if the server fails to handle the request, it will fallback to the S3 bucket.
203203

204204
This means on cache miss, the request will take slightly longer to process.
205205

206206
#### WORKAROUND: `NextServer` does not set cache response headers for HTML pages
207207

208208
Recall in the [Server function](#server-lambda-function) section, the server function uses the `NextServer` class from Next.js' build output to handle requests. `NextServer` does not seem to set the correct `Cache Control` headers.
209209

210-
To workaround the issue, the server function checks if the request is to an HTML page. And it will set the `Cache Control` header:
210+
To work around the issue, the server function checks if the request is to an HTML page. And it will set the `Cache Control` header:
211211

212212
```
213213
public, max-age=0, s-maxage=31536000, must-revalidate
@@ -268,7 +268,7 @@ To workaround the issue, we change the working directory for the server function
268268

269269
CloudFront lets your pass all headers to the server function. But by doing so, the `Host` header is also passed along to the server function. And API Gateway would reject the request. There is no way to configure CloudFront too pass **all but `Host` header**.
270270

271-
To workaround the issue, the middleware function JSON encodes all request headers into the `x-op-middleware-request-headers` header. And all response headers into the `x-op-middleware-response-headers` header. The server function will then decodes the headers.
271+
To work around the issue, the middleware function JSON encodes all request headers into the `x-op-middleware-request-headers` header. And all response headers into the `x-op-middleware-response-headers` header. The server function will then decode the headers.
272272

273273
Note that the `x-op-middleware-request-headers` and `x-op-middleware-response-headers` headers need to be added to CloudFront distribution's cache policy allowed list.
274274

0 commit comments

Comments
 (0)