Configuring SSL on GitLab CI help

I have been following the documentation here: https://hub.docker.com/r/randy723/gitlab/#ssl to add SSL support, but I keep receiving the error message “SSL Key, SSL Certificate and DHParam were not found”. I’ve set the environment variables to:

SSL_DHPARAM_PATH /home/git/data/certs
SSL_CERTIFICATE_PATH /home/git/data/certs
SSL_KEY_PATH /home/git/data/certs
GITLAB_HTTPS true

I’ve made sure the files are in the correct directory:
root@synology_gitlab:/home/git/data/certs# ls -l
total 16
-rw-r–r-- 1 root root 424 Aug 14 17:44 dhparam.pem
-rw-r–r-- 1 root root 1367 Aug 15 16:04 gitlab.crt
-rw-r–r-- 1 root root 1147 Aug 14 15:12 gitlab.csr
-rw-r–r-- 1 root root 1679 Aug 14 15:14 gitlab.key

What other troubleshooting steps can I take?

Did you change gitlab.rb and do a “gitlab-ctl reconfigure”

external_url ‘https://gitlab.example.com
nginx[‘ssl_certificate’] = “/etc/pki/tls/certs/server.crt”
nginx[‘ssl_certificate_key’] = “/etc/pki/tls/private/server.key”