AWS ALB Redirects HTTPS to HTTP without trailing slash – Nginx
I have an nginx server running on port 8080 that sits behind an AWS Application Load Balancer. I have the following location block in the nginx.conf, location / { limit_except GET { deny all; } root /root/of/project/; index index.html; try_files…