Skip to content
Snippets Groups Projects
Commit 309a3f14 authored by Stan Hu's avatar Stan Hu
Browse files

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
parents d1148002 23f705f2
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Loading
Loading
@@ -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;
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment