diff options
author | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-09-07 15:31:13 -0700 |
---|---|---|
committer | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2014-09-07 15:31:13 -0700 |
commit | 5d5d4ef91a31d39f15662a6a6bd8a314d860e608 (patch) | |
tree | 7a4e7f7f4659f9c15b14df6f7a711b8fb137c8a4 /lib/support | |
parent | f42a1ded99920998a9b63b309adc227485428d2c (diff) | |
download | gitlab-ce-5d5d4ef91a31d39f15662a6a6bd8a314d860e608.tar.gz |
simplify HTTPS setup details
also adds comment about updating nginx files during upgrades
Diffstat (limited to 'lib/support')
-rw-r--r-- | lib/support/nginx/gitlab-ssl | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/lib/support/nginx/gitlab-ssl b/lib/support/nginx/gitlab-ssl index 9ab228b46d7..9f7e1e220c7 100644 --- a/lib/support/nginx/gitlab-ssl +++ b/lib/support/nginx/gitlab-ssl @@ -26,23 +26,12 @@ ## [1] https://github.com/agentzh/chunkin-nginx-module#status ## [2] https://github.com/agentzh/chunkin-nginx-module ## -################################### -## SSL file editing ## -################################### -## -## Edit `gitlab-shell/config.yml`: -## 1) Set "gitlab_url" param in `gitlab-shell/config.yml` to `https://git.example.com` -## 2) Set "ca_file" to `/etc/nginx/ssl/gitlab.crt` -## 3) Set "self_signed_cert" to `true` -## Edit `gitlab/config/gitlab.yml`: -## 1) Define port for http "port: 443" -## 2) Enable https "https: true" -## 3) Update ssl for gravatar "ssl_url: https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm" ## ################################### ## SSL configuration ## ################################### ## +## See installation.md#using-https for additional HTTPS configuration details. upstream gitlab { server unix:/home/git/gitlab/tmp/sockets/gitlab.socket; |