Squid proxy not caching anything
Oh, crap, I figured it out.
Squid ignores cache headers less than OR EQUAL TO one minute. So max-age=60 is ignored, but max-age=61 works like a charm.
<?php
Header('Cache-Control: max-age=61');
?><html>hi</html>
Oh, crap, I figured it out.
Squid ignores cache headers less than OR EQUAL TO one minute. So max-age=60 is ignored, but max-age=61 works like a charm.
<?php
Header('Cache-Control: max-age=61');
?><html>hi</html>