Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

minor: fixed 2 typos #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reverse-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ __How to deploy it on your own account:__
"family": "application-stack"
}
```
The above task definition will tells ECS to always launch the NGINX reverse proxy container, and the application container on the same instance, and to link them together.
The above task definition will tell ECS to always launch the NGINX reverse proxy container, and the application container on the same instance, and to link them together.

The application container does not have a publically accessible port, so there is no way for a vulnerability scanning tool to directly access the application. Instead all traffic will be sent to NGINX, and NGINX is configured to only forward traffic to your application container, only if it follows specific whitelisted rules.
The application container does not have a publicly accessible port, so there is no way for a vulnerability scanning tool to directly access the application. Instead all traffic will be sent to NGINX, and NGINX is configured to only forward traffic to your application container, only if it follows specific whitelisted rules.

7. The final step is to deploy the task as a service, behind [a load balancer which is configured to send traffic to the NGINX container](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/create-application-load-balancer.html).