You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pagespeed.apache.org by GitBox <gi...@apache.org> on 2019/10/24 07:02:54 UTC

[GitHub] [incubator-pagespeed-ngx] ygm521 opened a new issue #1667: pagespeed proxy https request ?

ygm521 opened a new issue #1667: pagespeed proxy https request ?
URL: https://github.com/apache/incubator-pagespeed-ngx/issues/1667
 
 
   I want to use the nginx pagespeed proxy https request, but my backend has multiple servers, How do I proxy?
   
   pagespeed MapOriginDomain "### **http://testvser_pool**" "https://192.168.44.243:443";
   
   upstream testvser_pool {
   	server    192.168.66.100:80 fail_timeout=10s weight=10;
   	server    192.168.66.101:80 fail_timeout=10s weight=10;
   	server    192.168.66.102:80 fail_timeout=10s weight=10;
   }
   
   server {
   	listen 192.168.44.243:443 ssl;
   	location / {
   		proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2;                   
   		proxy_pass http://testvser_pool;
   	}
   }

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services