ecs-nginx-proxy
ecs-nginx-proxy copied to clipboard
Reverse proxy for AWS ECS. Lets you address your docker containers by sub domain.
Would this ECS nginx proxy work with Fargate too? I am trying to implement it on Fargate but I'm running into problems getting it started
Don't know if helpful, but to redirect http to https, I used this code: https://stackoverflow.com/a/35097290/3019499 ``` server { listen 81; return 301 https://$host$request_uri; } ``` Then the ELB listens on...
After the earlier commit's #14 #15, I started adding some of the nginx properties via environment variables. It works fine when you have one container running under nginx proxy but...
I've been using nginx-proxy for a while now, and came across this when wanting to move off vanilla ec2 and over to ecs. I've got it to a point where...
If you run your tasks without specifying the host port mapping, they get a random port assigned. Should you run say the same task on 3 machines, but the ecs...