You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dm...@apache.org on 2019/07/19 12:23:37 UTC

[incubator-dlab] branch DLAB-810 created (now 75c57fa)

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

dmysakovets pushed a change to branch DLAB-810
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 75c57fa  [DLAB-810] Truned off proxy buffering on nginx

This branch includes the following new commits:

     new 75c57fa  [DLAB-810] Truned off proxy buffering on nginx

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/01: [DLAB-810] Truned off proxy buffering on nginx

Posted by dm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dmysakovets pushed a commit to branch DLAB-810
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 75c57fa2f287ff942ff6605967bb5d98ed5861fc
Author: Dyoma33 <de...@gmail.com>
AuthorDate: Fri Jul 19 15:23:24 2019 +0300

    [DLAB-810] Truned off proxy buffering on nginx
---
 infrastructure-provisioning/src/ssn/templates/nginx_proxy.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/ssn/templates/nginx_proxy.conf b/infrastructure-provisioning/src/ssn/templates/nginx_proxy.conf
index 7d1570f..280e52c 100644
--- a/infrastructure-provisioning/src/ssn/templates/nginx_proxy.conf
+++ b/infrastructure-provisioning/src/ssn/templates/nginx_proxy.conf
@@ -24,7 +24,7 @@ server {
     listen 80;
     server_name  SSN_HOSTNAME;
     # rewrite ^/(.*)$ https://$server_name/$1 permanent;
-
+    proxy_buffering off;
     include locations/proxy_location_*.conf;
 }
 
@@ -32,6 +32,7 @@ server {
     listen       443 ssl;
     server_name  SSN_HOSTNAME;
     # SSL section
+    proxy_buffering off;
     ssl on;
     ssl_certificate /etc/ssl/certs/dlab.crt;
     ssl_certificate_key /etc/ssl/certs/dlab.key;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org