I\'m using HAProxy for load balancing and only want my site to support https. Thus, I\'d like to redirect all requests on port 80 to port 443.
How would I do this?<
Add this into the HAProxy frontend config:
acl http ssl_fc,not http-request redirect scheme https if http
HAProxy - Redirecting HTTP Requests