Pare o IIS 7.5 do envio de Cache-Control Max-Age em códigos de erro

10

Eu tenho algum conteúdo estático com o controle de cache Max-Age headers anexado a ele para que os clientes armazenem em cache o conteúdo estático. No entanto, o IIS 7.5 ainda envia esse cabeçalho para fora quando há respostas de erro aconselhando o cliente a armazenar em cache isso.

O efeito negativo é que alguns proxies armazenam em cache essa resposta de erro. Eu poderia Vary: Accept,Accept-Encoding , mas isso não resolve o problema raiz de Max-Age sair em respostas de erro.

A atual seção relevante do IIS web.config é:

<configuration>
  <system.webServer>
    <staticContent>
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
    </staticContent>
  </system.webServer>
</configuration>

Existe uma maneira para que eu possa fazer isso para que não digamos aos clientes ou proxies para armazenar em cache 400/500 códigos de erro?

    
por Kyle Brandt 05.01.2012 / 16:55

2 respostas

2

Eu criei um "pacote" de teste rudimentar.

Quando executo os testes com um Web.config mínimo no IIS 7.0 (modo pipline integrado no .NET 4.0), tudo passa; o cabeçalho de resposta Cache-Control do arquivo de teste está definido como private quando o cabeçalho Accept da solicitação não corresponde ao Content-Type do arquivo.

Isso me leva a acreditar que você tem algum módulo interrompendo a rotina de armazenamento em cache estático do IIS ou o IIS 7.0 e o 7.5 são diferentes aqui.

Aqui estão os arquivos que usei (sans some-script.js , pois é apenas um arquivo vazio):

Web.Config:

<?xml version="1.0"?>
<configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0">
        </compilation>
    </system.web>
    <system.webServer>
        <staticContent>
            <!-- Set expire headers to 30 days for static content-->
            <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
        </staticContent>
    </system.webServer>
</configuration>

test.html:

<!doctype html>
<html>
<head>
    <title>http://serverfault.com/questions/346975</title>
    <style>
        body > div
        {
            border:1px solid;
            padding:10px;
            margin:10px;
        }
    </style>
</head>
    <body>
        <div>
            <h2>Request JS file with Accepts: accept/nothing</h2>
            <b>Response Headers: </b>
            <pre id="responseHeaders-1">loading&hellip</pre>
        </div>

        <div>
            <h2>Request JS file with Accepts: */*</h2>
            <b>Response Headers: </b>
            <pre id="responseHeaders-2">loading&hellip</pre>
        </div>

        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script>varresponseHeaders1=$("#responseHeaders-1"),
                responseHeaders2 = $("#responseHeaders-2"),
                fetchScript = function (accepts, element, successMsg, errorMsg) {

                    var jXhr = $.ajax({
                        // fetch the resource "fresh" each time since we are testing the Cache-Control header and not caching itself
                        "url": "some-script.js?" + (new Date).getTime(),
                        "headers": {
                            "Accept" : accepts
                        },
                        "complete": function () {
                            var headers = jXhr.getAllResponseHeaders();
                            headers = headers.replace(/(Cache-Control:.+)/i, "<strong><u>$1</u></strong>");
                            element.html(headers);
                        },
                        "success": function () {
                            element.after("<div>" + successMsg + "</div>");
                        },
                        "error": function () {
                            element.after("<div>" + errorMsg + "</div>");
                        }
                    });
                };

                fetchScript("accept/nothing", responseHeaders1, "Uh, your server is sending stuff when the client doesn't accept it.", "Your server (probably) responded correctly.");
                fetchScript("*/*", responseHeaders2, "Your server responded correctly.", "Something went wrong.");
        </script>
    </body>
</html>
    
por 06.01.2012 / 19:09
0

você deve especificar o tipo de conteúdo que você irá armazenar em cache. por exemplo, você pode armazenar em cache Scripts, css, image ..etc. Portanto, use a tag <location path ="Scripts"> antes da tag <system.webServer> . então sua configuração da web é assim.

 <location path ="Scripts">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="07:00:00" />
      </staticContent>
    </system.webServer>
  </location>
  <location path ="css">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="07:00:00" />
      </staticContent>
    </system.webServer>
 </location>
    
por 19.04.2017 / 15:49