Questions tagged [aws-application-load-balancer]
1004 questions
0
votes
1 answer
AWS Copilot multiple Load Balanced Web Service
I have deployed a Load Balanced Web Service in a copilot application. After deploying it, I added a new HTTPS / 443 listener that forwards requests to the Target Group where the ECS container is deployed:
name: api1
type: Load Balanced Web…

Guillaume
- 2,912
- 3
- 35
- 59
0
votes
0 answers
Can two containers swap serving the same IP:PORT back and forth in AWS?
The context
I am trying to run a Minecraft server on TCP/25565, which requires a constantly running server that has access to a large amount of memory and CPU. This would be expensive to run constantly. However, without running it constantly,…

mmachenry
- 1,773
- 3
- 22
- 38
0
votes
1 answer
AWS API gateway backend API authentication
Is it possible to authenticate with AWS Signature V4, and set access policies to backend API's based on the identity associated to the signature?
Or are signed messages only used for accessing AWS Infrastructure API's. e.g. The API Gateway API's…

jhurtas
- 555
- 1
- 6
- 17
0
votes
1 answer
Host Headers implementation with shared ALB and Elastic Beanstalk
I'm trying to modify the default Host Header CNAME attach to the rule when using a shared ALB with ElasticBeanstalk configuration. By using Terraform, here's how my configuration look like:
{
namespace = "aws:elasticbeanstalk:environment"
…

Oli at cdcloudlogix.com
- 141
- 9
0
votes
1 answer
AWS EKS service EXTERNAL-IP of load balancer is Pending
I was working on a staging cluster for my application, it required around 12 load balancers for my services definition. All of 12 looked pretty much the same:
apiVersion: v1
kind: Service
metadata:
labels:
app: my-app-api
name: my-app-api
…

AzureFireIce
- 93
- 3
- 9
0
votes
0 answers
gRPC AWS Ingress Kubernetes
I am trying to set up an Ingress manifest that allows traffic through an ALB to connect to a gRPC pod. I am currently getting the error:
{
"error": "14 UNAVAILABLE: Trying to connect an http1.x server"
}
Not really sure what this means as I am…

sd-gallowaystorm
- 129
- 4
- 15
0
votes
1 answer
NGINX configuration to forward request on to ALB
Have to create 3 tier architecture on AWS.
my simple environment works like this:
User ----> Eternal application load balancer ---> NGINX web server ----> internal application load balancer ----> Apache application server.
When i hit to external…

Chandan Gowda
- 3
- 2
0
votes
0 answers
Should I redirect Https to http in alb aws?
So I have a load balancer connected to an ec2 instance. The ec2 has a php website running on port 8000 hosted in iis 8.5. Now http health check is passing after adding binding in iis for port 8000, but https health check is failing. But since in…

Eashan
- 21
- 4
0
votes
0 answers
Why is my application load balancer's health checks failing for iis website hosted on windows ec2 instance?
So we have a windows ec2 instance. It has iis installed on it. Now our php website in hosted on iis. And the index.php page is inside C:/inetpub/wwwroot/project/public/index.php.
But when I give this path in application load balancer health check…

Eashan
- 21
- 4
0
votes
0 answers
Which Kubernetes names can begin with a number?
The Kubernetes docs state that four "commonly used name constraints" are RFC1123 subdomain names, RFC1123 label names, RFC1035 label names, and (posix?) path segments. These constraints differ e.g. in maximum length, whether any uppercase is…

benjimin
- 4,043
- 29
- 48
0
votes
1 answer
AWS Target Group registering 2 targets on same ECS task?
We have an ECS task definition that maps host port (0) to container port 3000 to take advantage of dynamic host port mapping with a single target group on an autoscaling ECS service. Things have been working fine, for over a year, but this past week…

walexnelson
- 424
- 2
- 10
0
votes
0 answers
How can I make a request from Lambda to ECS Fargate fronted by ApplicationLoadBalancer?
I was able to upload the docker image into Fargate in ECS. I couldn't figure out how could my lambda make a request to ECS Fargate.
The docker image would run an application in the machine at port 8080, and we could connect to the application using…

EzyHoo
- 301
- 2
- 14
0
votes
1 answer
Routing example.com to www.example.com for secure https connection
I have an AWS loadbalancer with a certificate routed from www.example.com that works fine using HTTPS. On a desktop-top browser example.com will automatically route to www.example.com. On a phone example.com doesn't add the www and loses its HTTPS…

dassoop
- 11
- 2
0
votes
1 answer
How to use a certificate in an ALB target group HTTPS health check
I have an HTTPS endpoint and I want my application loadbalancer (ALB) to NOT terminate TLS and pass it through to the instances. How do I configure health checks on the target group to reach the instance? I don't see any option to set the TLS cert.

JavaHead
- 635
- 1
- 6
- 21
0
votes
0 answers
Nginx is not able to redirect from login to homepage with Flask app running on AWS EC2 instances
I have an Internet facing ELB which forwards all my request to Nginx server at port 8080
(Nginx web server).This Nginx server is suppose to forward all the request to my Flask app which listens at port 8080 from application Load balancer.
So here is…

M G
- 19
- 2