Commit fdcc5ddec1e599289e09aeef0c5fbc276abcc05c

Authored by GitLab
1 parent f758438e

Ensure sidekiq is displayed by setting X-Frame-Options.

Showing 2 changed files with 2 additions and 0 deletions   Show diff stats
CHANGELOG
... ... @@ -13,6 +13,7 @@ v 7.0.0
13 13 - Group masters can create projects in group
14 14 - Deprecate ruby 1.9.3 support
15 15 - Only masters can rewrite/remove git tags
  16 + - Add X-Frame-Options SAMEORIGIN to Nginx config so Sidekiq admin is visible
16 17  
17 18 v 6.9.2
18 19 - Revert the commit that broke the LDAP user filter
... ...
lib/support/nginx/gitlab
... ... @@ -54,6 +54,7 @@ server {
54 54 proxy_set_header Host $http_host;
55 55 proxy_set_header X-Real-IP $remote_addr;
56 56 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  57 + proxy_set_header X-Frame-Options SAMEORIGIN;
57 58  
58 59 proxy_pass http://gitlab;
59 60 }
... ...