i set https on /etc/gitlab/gitlab.rb
external_url = 'https://gitlab.domain.com'
nginx['redirect_http_to_https'] = true
nginx['ssl_certificate'] = "/etc/gitlab/ssl/gitlab.example.crt"
nginx['ssl_certificate_key'] = "/etc/gitlab/ssl/gitlab.example.com.key"
gitlab-ctl reconfigure no error, https://gitlab.domain.com didn’t work but http://gitlab.domain.com still working, what i do to https work?
sorry for bad english
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@encu
Make sure your server is listening on port
443
, show me the output ofnetstat -ltnp | grep 443
Also you can post the output of your error log
tail -50 /var/log/nginx/error.log
Are you sure that your ssl certificates are in the path you specified?
@encu This is the right config, it works for me, I did not put the external url here
What it is not
sslcertificate
it isssl_certificate
the same thing for redirect and key.Hope this helps