@chromaker wrote:
Hello together,
I would like to redirect my subdomain to an office 365 Sharepoint path. My domain provider cannot handle it, so I would like to use my haproxy service.
So my example is:
Domain: sharepoint.company.com
Should open the URL: https://company.sharepoint.com/_layouts/15/sharepoint.aspxI tried:
frontend http-in # unsecure
bind *:80
reqadd X-Forwarded-Proto:\ http # Adds http header to end of end of the HTTP request
redirect scheme https code 301 if !{ ssl_fc }acl lets_encrypt path_beg /.well-known/acme-challenge/ acl site_sharepoint_company hdr_end(host) -i sharepoint.comany.com http-request redirect code 301 location https://company.sharepoint.com/_layouts/15/sharepoint.aspx if site_sharepoint_company
But it does not work. Do I also need a use_backend?
With best regards
chromaker
Posts: 1
Participants: 1