File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
* [ ENHANCEMENT] Define namespace in templates #184
9
9
* [ ENHANCEMENT] Use FQDN for memcached addresses #175
10
10
* [ ENHANCEMENT] Optionally generate endpoints for ` X-Scope-OrgID ` injection (multi-tenancy) #180
11
+ * [ BUGFIX] Correcting nginx config for auth orgs to right proxy_pass #192
11
12
12
13
## 0.6.0 / 2021-06-28
13
14
Original file line number Diff line number Diff line change 16
16
17
17
events {
18
18
worker_connections 4096; ## Default: 1024
19
- }
19
+ }
20
20
21
21
http {
22
22
default_type application/octet-stream;
@@ -107,7 +107,7 @@ data:
107
107
{{- range $org := compact .Values.nginx.config.auth_orgs | uniq }}
108
108
location = /api/v1/push/{{ $org }} {
109
109
proxy_set_header X-Scope-OrgID {{ $org }};
110
- proxy_pass http://{{ template "cortex.fullname" $ }}-distributor.{{ $rootDomain }}$request_uri ;
110
+ proxy_pass http://{{ template "cortex.fullname" $ }}-distributor.{{ $rootDomain }}/api/v1/push ;
111
111
}
112
112
{{- end }}
113
113
{{- end }}
You can’t perform that action at this time.
0 commit comments