We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c642485 commit bea6ec5Copy full SHA for bea6ec5
apps/koku-ui-onprem/nginx.conf.template
@@ -1,9 +1,13 @@
1
location /api {
2
proxy_pass ${API_PROXY_URL};
3
+
4
+ proxy_set_header Authorization "Bearer $http_x_forwarded_access_token";
5
proxy_set_header Host $host;
6
proxy_set_header X-Real-IP $remote_addr;
7
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto $scheme;
8
9
+ proxy_http_version 1.1;
10
+ proxy_set_header Connection "";
11
}
12
13
location / {
0 commit comments