Vernikli Özel 503 Hata Sayfası


Yanıtlar:


13

Vernik SSS Bunun vcl_error kullanarak önerir (ve bunu yaptık nasıl):

Bu, hata sayfası için varsayılan VCL'dir:

sub vcl_error {
    set obj.http.Content-Type = "text/html; charset=utf-8";

    synthetic {"
        <?xml version="1.0" encoding="utf-8"?>
        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
        <html>
            <head>
                <title>"} obj.status " " obj.response {"</title>
            </head>
            <body>
                <h1>Error "} obj.status " " obj.response {"</h1>
                <p>"} obj.response {"</p>
                <h3>Guru Meditation:</h3>
                <p>XID: "} req.xid {"</p>
                <address><a href="http://www.varnish-cache.org/">Varnish</a></address>
            </body>
        </html>
    "};
    return(deliver);
}

özel bir sürüm istiyorsanız, yapılandırmanızdaki işlevi geçersiz kılın ve ifadedeki işaretlemeyi değiştirin synthetic.

Farklı hata kodları için farklı işaretleme yapmak istiyorsanız, bunu oldukça kolay bir şekilde yapabilirsiniz:

sub vcl_error {
    set obj.http.Content-Type = "text/html; charset=utf-8";
    if (obj.status == 404) {
        synthetic {"
            <!-- Markup for the 404 page goes here -->
        "};
    } else if (obj.status == 500) {
        synthetic {"
            <!-- Markup for the 500 page goes here -->
        "};
    } else {
        synthetic {"
            <!-- Markup for a generic error page goes here -->
        "};
    }
}

bu VCL 4.0 çalışmaz - vcl 4.0 kullanıyorsanız o zaman aşağıdaki cevaba bakınız
Philipp

18

Yukarıdaki yanıtların Vernik 3 için olduğunu unutmayın. Soru sürüm bilgisini belirtmediğinden, Versiyon 4 için cevabı değiştiği gibi eklemek de uygun bir zaman gibi görünüyor.

Umarım bu, yukarıdaki cevapları okumaktan ve vcl_error'u V4 VCL'lerine koymaktan kurtaracaktır :)

Vernik 4.0 için Builtin VCL

sub vcl_synth {
    set resp.http.Content-Type = "text/html; charset=utf-8";
    set resp.http.Retry-After = "5";
    synthetic( {"<!DOCTYPE html>
<html>
  <head>
    <title>"} + resp.status + " " + resp.reason + {"</title>
  </head>
  <body>
    <h1>Error "} + resp.status + " " + resp.reason + {"</h1>
    <p>"} + resp.reason + {"</p>
    <h3>Guru Meditation:</h3>
    <p>XID: "} + req.xid + {"</p>
    <hr>
    <p>Varnish cache server</p>
  </body>
</html>
"} );
    return (deliver);
}

Ayrıca, VCL'nizden bir hata atmak istiyorsanız, artık 'hata' işlevini kullanmayacağınızı, bunun yerine şunları yapacağınızı unutmayın:

return (synth(405));

Ayrıca, arka uçtan gelen 413, 417 ve 503 hataları, bu işlev yoluyla otomatik olarak yönlendirilir.


Bunun "arka uç getirme hatalarını" yakalamayacağını lütfen unutmayın. Onları yakalamak için ayrıca bir oluşturmalısınız sub vcl_backend_errorsen de görebileceğiniz gibi, serverfault.com/a/665917/102757 ve serverfault.com/a/716767/102757
lucaferrario
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.