I have an application load balancer (ALB) in AWS for an Angular 6 application. I am experiencing issues when I attempt to access the application through the ALB. I have other applications I can access through the same ALB so I know security groups, and other networking configurations are properly configured.
I have a listener on the ALB at port 80, and I am using path routing to serve multiple applications through port 80 on the ALB. The path I have the Angular app at is /angular*
.
When I attempt to access the Angular application I receive a 503 error for some application assets, and 200 for others. Specifically, I receive the index.html fine, but none of the JS files come back, and I get a 503 for each of them.
I thought this might be an issue with the "base_href" in my index.html file so I changed that to match the path I have set on the ALB for the application. However, I am still receiving the same error. Any suggestions on the possible issue would be much appreciated.