Architecture > Admin Area Architecture
Serving Application Files
Learn how are React application files served via the deployed cloud infrastructure.
- how are React application files served via the deployed cloud infrastructure
Diagram
Description
The diagram shows how HTTP requests travel through the deployed cloud infrastructure and how files are returned back to the client. This happens repeatedly as the user opens and navigates through the Admin Area React application. Note that, when talking about the API HTTP requests that the Admin Area React application issues, those are still issued to the Amazon CloudFront distribution that’s deployed as part of the API project application.
Steps
- The HTTP request first reaches the Amazon CloudFront
A . - The request is forwarded to the Amazon S3 bucket
B . - Amazon CloudFront
A receives the file from Amazon S3B , caches it accordingly, and returns it back to the client.
FAQ
Are There Any Amazon CloudFront Caching Rules in Place?
All of the files that are served from the /static/*
path are cached for 30 days. The rest is cached for five minutes. If need be, this can be additionally adjusted via code.
What Is thestatic
Folder Anyways?
The Admin Area React application is actually a create-react-app application, which, upon making a production build, places all of the static files (JS, CSS, images, …) into this folder.