Skip to content

Instantly share code, notes, and snippets.

@thefkboss
Forked from tcoupin/haproxy.cfg
Created September 9, 2016 12:15
Show Gist options
  • Save thefkboss/c32cd5cb5d8c2bf22e14d5fc473dd6df to your computer and use it in GitHub Desktop.
Save thefkboss/c32cd5cb5d8c2bf22e14d5fc473dd6df to your computer and use it in GitHub Desktop.
frontend http-in-ext
bind 0.0.0.0:80
bind 0.0.0.0:443 ssl crt /SSL/yourcert.pem
option forwardfor
reqrep (.*)/seamedia/(.*) \1/seahub/seamedia/\2
acl path_seahub path_beg /seahub
acl path_seafile path_beg /seafhttp
#Force https
redirect scheme https if path_seahub !{ ssl_fc }
redirect scheme https if path_seafile !{ ssl_fc }
use_backend seahub if path_seahub
use_backend seafile if path_seafile
backend seahub
server pi1 pi1:8000 check
backend seafile
reqrep (.*)/seafhttp/(.*) \1/\2
server pi1 pi1:8082 check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment