Using HTTPS for a Laravel app behind an AWS Elastic Load Balancer
When using an AWS Elastic Load Balancer, the communication between the load balancer and your server is HTTP. Laravel will adjust the urls crated based on the protocol but since it only see’s http it can cause issues. To resolve this there is a nice Laravel package called Trusted Proxy, https://github.com/fideloper/TrustedProxy. The package allows Laravel to … More Using HTTPS for a Laravel app behind an AWS Elastic Load Balancer