Skip to content
Snippets Groups Projects
Commit 064d3cdf authored by Balasankar 'Balu' C's avatar Balasankar 'Balu' C
Browse files

Merge branch 'fix-416803-bad-gateway-on-large-artifacts' into 'master'

Don't 500 when pages tries to serve a chunked file

See merge request https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7006



Merged-by: default avatarBalasankar 'Balu' C <balasankar@gitlab.com>
Approved-by: default avatarClemens Beck <cbeck@gitlab.com>
Reviewed-by: default avatarDan <git@drmoose.net>
Co-authored-by: default avatarDan <Dan.Charney@is4s.com>
Co-authored-by: default avatarDan <git@drmoose.net>
parents 8f53d881 37195619
No related branches found
No related tags found
1 merge request!101Omnibus Gitlab 16.2 branching point
......@@ -334,6 +334,7 @@
```conf
proxy_cache off;
proxy_http_version 1.1;
proxy_pass http://gitlab-workhorse;
```
......@@ -533,6 +534,7 @@
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_pass http://gitlab-workhorse;
## The following settings only work with NGINX 1.7.11 or newer
......@@ -556,6 +558,7 @@
## To access Grafana
location /-/grafana/ {
proxy_http_version 1.1;
proxy_pass http://localhost:3000/;
}
......
......@@ -15,6 +15,7 @@
<% @monitoring_addresses.each do |address| %>
location = <%= File.join(@path, address[:url]) %> {
proxy_cache off;
proxy_http_version 1.1;
proxy_pass http://gitlab-workhorse;
error_page 404 500 502 /error.<%= address[:format] %>;
}
......
......@@ -130,6 +130,7 @@
proxy_connect_timeout 90;
proxy_send_timeout 300;
proxy_read_timeout <%= @proxy_read_timeout %>;
proxy_http_version 1.1;
proxy_pass http://gitlab_mattermost;
}
......@@ -157,6 +158,7 @@
<% next if header[1].nil? %>
proxy_set_header <%= header[0] %> <%= header[1] %>;
<% end %>
proxy_http_version 1.1;
proxy_pass http://gitlab_mattermost;
}
......
......@@ -111,6 +111,7 @@
proxy_buffer_size <%= @proxy_custom_buffer_size %>;
<% end -%>
proxy_http_version 1.1;
proxy_pass http://<%= @pages_listen_proxy %>;
}
......
......@@ -37,6 +37,7 @@
location /rails-metrics {
proxy_cache off;
proxy_http_version 1.1;
proxy_pass http://gitlab-workhorse/-/metrics;
<% @options.each do |key, value|
if value.is_a?(String) -%>
......
......@@ -418,6 +418,16 @@
end
end
end
# Required to allow chunked encoding responses as of nginx 1.23
# https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7006
it 'sets proxy_http_version 1.1 when proxy_pass is used' do
http_conf.each_value do |conf|
expect(chef_run).to render_file(conf).with_content { |content|
expect(content).to include('proxy_http_version 1.1;') if content.include?('proxy_pass')
}
end
end
end
context 'when is enabled' do
......@@ -565,6 +575,7 @@
expect(chef_run).to render_file(http_conf['gitlab']).with_content { |content|
expect(content).to include('location /-/grafana/ {')
expect(content).to include('proxy_pass http://localhost:3000/;')
expect(content).to include('proxy_http_version 1.1;')
}
end
end
......@@ -580,6 +591,7 @@
expect(chef_run).to render_file(http_conf['gitlab']).with_content { |content|
expect(content).to include('location = /-/kubernetes-agent/ {')
expect(content).to include('proxy_pass http://localhost:8150/;')
expect(content).to include('proxy_http_version 1.1;')
expect(content).to include('location /-/kubernetes-agent/k8s-proxy/ {')
expect(content).to include('proxy_pass http://localhost:8154/;')
......@@ -601,6 +613,7 @@
expect(chef_run).to render_file(http_conf['gitlab']).with_content { |content|
expect(content).to include('location = /-/kubernetes-agent/ {')
expect(content).to include('proxy_pass http://localhost:8150/;')
expect(content).to include('proxy_http_version 1.1;')
expect(content).to include('location /-/kubernetes-agent/k8s-proxy/ {')
expect(content).to include('proxy_pass http://localhost:8154/;')
......@@ -614,6 +627,7 @@
expect(content).to include('proxy_http_version 1.1;')
expect(content).to include('proxy_pass http://localhost:8150/;')
expect(content).to include('proxy_http_version 1.1;')
expect(content).to include('location /k8s-proxy/ {')
expect(content).to include('location = /k8s-proxy/ {')
......
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