Skip to content
Snippets Groups Projects
Commit fdcc5dde authored by GitLab's avatar GitLab
Browse files

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

parent f758438e
Branches
Tags
No related merge requests found
Loading
@@ -13,6 +13,7 @@ v 7.0.0
Loading
@@ -13,6 +13,7 @@ v 7.0.0
- Group masters can create projects in group - Group masters can create projects in group
- Deprecate ruby 1.9.3 support - Deprecate ruby 1.9.3 support
- Only masters can rewrite/remove git tags - Only masters can rewrite/remove git tags
- Add X-Frame-Options SAMEORIGIN to Nginx config so Sidekiq admin is visible
   
v 6.9.2 v 6.9.2
- Revert the commit that broke the LDAP user filter - Revert the commit that broke the LDAP user filter
Loading
Loading
Loading
@@ -54,6 +54,7 @@ server {
Loading
@@ -54,6 +54,7 @@ server {
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Frame-Options SAMEORIGIN;
   
proxy_pass http://gitlab; proxy_pass http://gitlab;
} }
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment