Merge branch 'sh-disable-registry-proxy-buffering' into 'master'

Disable NGINX buffering with container registry

Closes #2848

See merge request gitlab-org/omnibus-gitlab!1981
This commit is contained in:
Marin Jankovski 2017-10-05 10:47:06 +00:00
commit 2413adb19a
2 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ omnibus-gitlab repository.
- Remove unused Grit configuration settings
- Enable profiler for jemalloc
- Disable NGINX buffering with container registry
- Add -artifacts-server and -artifacts-server-timeout support to Omnibus
- Added PostgreSQL support for effective_io_concurrency
- Added PostgreSQL support for max_worker_processes and max_parallel_workers_per_gather

View File

@ -82,6 +82,8 @@ server {
proxy_read_timeout 900;
proxy_cache off;
proxy_buffering off;
proxy_request_buffering off;
proxy_pass http://<%= @registry_http_addr %>;
}