From 3cefd09adc7819dd7b8d7ff0d2396dd9682ad164 Mon Sep 17 00:00:00 2001 From: jerabekjiri Date: Mon, 11 Dec 2023 13:43:50 +0100 Subject: [PATCH] unlock nginx size Issue: AAH-2762 --- galaxy_ng/app/webserver_snippets/nginx.conf | 30 --------------------- 1 file changed, 30 deletions(-) diff --git a/galaxy_ng/app/webserver_snippets/nginx.conf b/galaxy_ng/app/webserver_snippets/nginx.conf index 5f3cbfc7d5..8493111256 100644 --- a/galaxy_ng/app/webserver_snippets/nginx.conf +++ b/galaxy_ng/app/webserver_snippets/nginx.conf @@ -30,33 +30,3 @@ location /v2/ { proxy_pass http://pulp-api; client_max_body_size 0; } - -location extensions/v2/ { - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header Host $http_host; - # we don't want nginx trying to do something clever with - # redirects, we set the Host: header above already. - proxy_redirect off; - proxy_pass http://pulp-api; -} - -location /pulp/container/ { - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header Host $http_host; - # we don't want nginx trying to do something clever with - # redirects, we set the Host: header above already. - proxy_redirect off; - proxy_pass http://pulp-content; -} - -location /token/ { - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header Host $http_host; - # we don't want nginx trying to do something clever with - # redirects, we set the Host: header above already. - proxy_redirect off; - proxy_pass http://pulp-api; -}