Skip to content

Commit

Permalink
Support for HTTP1.1 in nginx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
maver1ck authored Mar 21, 2024
1 parent d3bc39b commit a40c7aa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airbyte-webapp/nginx/default.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ server {
proxy_read_timeout 1h;
client_max_body_size 200M;
proxy_pass http://api-server/api/;
proxy_http_version 1.1;

# Unset X-Airbyte-Auth header so that it cannot be used by external requests for authentication
proxy_set_header X-Airbyte-Auth "";
Expand All @@ -49,6 +50,7 @@ server {
proxy_read_timeout 1h;
client_max_body_size 200M;
proxy_pass http://connector-builder-server/;
proxy_http_version 1.1;
}

location /auth/ {
Expand Down

0 comments on commit a40c7aa

Please sign in to comment.