luison commented on issue #2052:
URL: 
https://github.com/apache/incubator-pagespeed-mod/issues/2052#issuecomment-733000614


   Hi again, thanks for the prompt reply.
   No, our setup is more like
   
   ```
   nginx {
      all server stuff
      pagespeed config stuff
      pagespeed off
   }
   
   server {
          port 443;
         name mainproject.domain.com;
         pagespeed on; (and all pagespeed config needed)
          location /static - serving directly css, img, js      
         all nginx proxy stuff; 
   }
   server {
          port 443;
         name images.domain.com;
          pagespeed off;
          all nginx proxy stuff; (included proxy_pass http://images.domain.com;)
   }
   server {
          port 443;
         name assets.domain.com;
         pagespeed off; 
         all nginx proxy stuff; (included proxy_pass http://assets.domain.com;)
   }
   ```
   
   mainproject is proxying our backend for all php mainly
   images coming from images.domain.com 
   
   I guess by your message that my answer then is that if I wan pagespeed on 
maindomain to interact with resources coming from images.domain.com I need 
pagespeed on also on that nginx server proxy with its own config set (only 
images resizing in that case) correct?
   
   


----------------------------------------------------------------
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


Reply via email to