<div>Hey folks, </div><div><br></div><div>My Django website uses a subdomain to serve static content and as such I have 'expires' set to max. However, there is now one image on that domain that get's re-generated every 10 minutes. How would I go about forcing just that one filename to NOT be cached by the browser?</div>
<div><br></div><div>This is what I have:</div><div><br></div><div>server {</div><div> listen 80;</div><div> listen 443;</div><div> ssl on;</div><div> server_name <a href="http://static.example.com">static.example.com</a>;</div>
<div> expires max;</div><div> add_header Cache-Control public;</div><div> access_log off;</div><div> root /home/username/public_html/<a href="http://static.example.com/">static.example.com/</a>;</div>
<div>}</div><div><br></div>