Skip to content

Commit c857ac9

Browse files
committed
fix: solve issue with 403 on non root routes app reload
1 parent f0592ac commit c857ac9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

serverless.yml

+5
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ resources:
8282
- ErrorCode: 404
8383
ResponseCode: 200
8484
ResponsePagePath: /index.html
85+
# For some reason, CloudFront or S3 generates 403 errors for non existent files
86+
# when it is configured with Origin Access Control and without static website hosting in S3 bucket
87+
- ErrorCode: 403
88+
ResponseCode: 200
89+
ResponsePagePath: /index.html
8590
DefaultCacheBehavior:
8691
AllowedMethods: ["GET", "HEAD", "OPTIONS"]
8792
CachedMethods: ["GET", "HEAD", "OPTIONS"]

0 commit comments

Comments
 (0)