Lofesa commented on issue #1667: pagespeed proxy https request ? URL: https://github.com/apache/incubator-pagespeed-ngx/issues/1667#issuecomment-545809271 An example, you need to configure more things, liche pagespeed file cache and so on.... ``` http { 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; pagespeed on; pagespeed MapOriginDomain "http://testvser_pool" "https://192.168.44.243:443"; location / { proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2; proxy_pass http://testvser_pool; } } ``` [https://serverfault.com/questions/529197/nginx-reverse-proxy-ssl-offloading-caching-and-pagespeed-all-in-one](https://serverfault.com/questions/529197/nginx-reverse-proxy-ssl-offloading-caching-and-pagespeed-all-in-one)
---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services