<div></div>Hi,<div>I set simply reverse proxy (backend is an Apache web server):</div><div><br></div><div><div>upstream backend {</div><div>        ip_hash;</div><div>        server 127.0.0.1:8080; </div><div>}</div></div><div><br></div><div><br></div><div><div>server {</div><div>        listen x.y.w.z:80; # IP goes here.</div><div>        server_name somedomain.com;</div><div>        expires off;</div><div>        location / {</div><div>            proxy_pass http://backend;</div><div>            }</div><div>        real_ip_header X-Forwarded-For;</div><div><br></div><div>        # Set proxy headers for the passthrough</div><div>        proxy_set_header Host $host;</div><div>        proxy_set_header X-Real-IP $remote_addr;</div><div>        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</div><div>        </div><div>        access_log /var/log/nginx/domain.cache.log cache;</div><div>        access_log /var/log/nginx/domain.access.log;</div><div>}</div></div><div><br></div><div><br></div><div><br></div><div>While browsing website, I see lots on entry in /var/log/nginx/domain.cache.log file (of course in /var/log/nginx/domain.access.log too).</div><div>My question is: with this configuration, is there any caching active?</div><div><br></div><div><br></div><div>Example of cache log:</div><div><br></div><div><div>***05/Jul/2016:21:15:59 +0200 - Cache-Control: - Expires: - some.domain.net "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-core,jquery-&load%5B%5D=ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,dashboard,underscore,customize-base,customize-loader,thickbox,plugin-instal&load%5B%5D=l,shortcode,media-upload,svg-painter,heartbeat,wp-auth-check,wp-a11y,wplink,jquery-ui-position,jquery-ui-menu,jquery-ui-autocomp&load%5B%5D=lete&ver=4.5.3 HTTP/1.1" (304) "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0" Args: c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-core,jquery-&load%5B%5D=ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,dashboard,underscore,customize-base,customize-loader,thickbox,plugin-instal&load%5B%5D=l,shortcode,media-upload,svg-painter,heartbeat,wp-auth-check,wp-a11y,wplink,jquery-ui-position,jquery-ui-menu,jquery-ui-autocomp&load%5B%5D=lete&ver=4.5.3 Wordpress Auth Cookie:  </div><div>***05/Jul/2016:21:16:59 +0200 - Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Wed, 11 Jan 1984 05:00:00 GMT some.domain.net "POST /wp-admin/admin-ajax.php HTTP/1.1" (200) "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0" Args: - Wordpress Auth Cookie:  </div><div>***05/Jul/2016:21:18:59 +0200 - Cache-Control: no-cache, must-revalidate, max-age=0 Expires: Wed, 11 Jan 1984 05:00:00 GMT some.domain.net "POST /wp-admin/admin-ajax.php HTTP/1.1" (200) "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0" Args: - Wordpress Auth Cookie: </div></div><div><br></div><div><br></div>