Skip to content
Snippets Groups Projects
Verified Commit 6e720465 authored by Evangelos Foutras's avatar Evangelos Foutras :smiley_cat:
Browse files

debuginfod: let nginx compress octet-stream responses

Using the fastest gzip compression level to avoid burning too much CPU.
parent 0ea6ad34
No related branches found
No related tags found
1 merge request!573debuginfod: let nginx compress octet-stream responses
Pipeline #18755 passed
......@@ -42,5 +42,8 @@ server {
location @debuginfod {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://127.0.0.1:8002;
gzip_comp_level 1;
gzip_types application/octet-stream;
}
}
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