I have an AWS ELB in charge of the https endpoint of my application. Each request on port 443 get redirected to port 80 of an Ubuntu 14.04 EC2 instance running Gitlab Omnibus version 8.10.4-ce.
In gitlab configuration (/etc/gitlab/gitlab.rb), I define external_url with http scheme:
external_url "http://gitlab.mydomain.com"
Defining it with https scheme prevents nginx from starting as a crt is requested in Gitlab configuration.
Is there a way to tell GitLab to send request to ELB on https://gitlab.mydomain.com instead of http (as in this case, the ELB is the one in charge of the tls termination) ?