You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mh...@apache.org on 2019/12/06 03:20:56 UTC

[openwhisk-apigateway] branch master updated: fix(http): Use HTTP 1.1 for upstreams (#369)

This is an automated email from the ASF dual-hosted git repository.

mhamann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-apigateway.git


The following commit(s) were added to refs/heads/master by this push:
     new c79eda2  fix(http): Use HTTP 1.1 for upstreams (#369)
c79eda2 is described below

commit c79eda2b18d43517939f11cab16b7c6f70218a90
Author: Matt Hamann <ma...@gmail.com>
AuthorDate: Thu Dec 5 22:20:47 2019 -0500

    fix(http): Use HTTP 1.1 for upstreams (#369)
---
 conf.d/managed_endpoints.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/conf.d/managed_endpoints.conf b/conf.d/managed_endpoints.conf
index 71336f0..cf601ba 100644
--- a/conf.d/managed_endpoints.conf
+++ b/conf.d/managed_endpoints.conf
@@ -82,6 +82,7 @@ server {
             routing.processCall(ds.init())
         }
 
+        proxy_http_version 1.1;
         proxy_pass $upstream;
         header_filter_by_lua_block {
             local cors = require "cors"