Merge branch 'fix-gitlab-registry-ssl-redirect' into 'master'

Fix: redirect non-SSL request for gitlab registry to valid URL

See merge request gitlab-org/gitlab-ce!20824
This commit is contained in:
Stan Hu 2018-07-24 23:24:06 +00:00
commit 309a3f1477
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ server {
listen *:80;
server_name registry.gitlab.example.com;
server_tokens off; ## Don't show the nginx version number, a security best practice
return 301 https://$http_host:$request_uri;
return 301 https://$http_host$request_uri;
access_log /var/log/nginx/gitlab_registry_access.log gitlab_access;
error_log /var/log/nginx/gitlab_registry_error.log;
}