Last active
March 28, 2017 20:37
-
-
Save ezhuk/7011493 to your computer and use it in GitHub Desktop.
Force HTTPS in HAProxy behind Amazon ELB.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
frontend main *:80 | |
acl is_http hdr(X-Forwarded-Proto) http | |
redirect prefix https://example.com code 301 if is_http |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment