<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=iso-8859-1"><meta name=Generator content="Microsoft Word 12 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
span.EstiloCorreo18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=ES-CL link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>It could have been you didn’t define the backend for the request in sub vcl_recv:<o:p></o:p></span></p><p class=MsoNormal style='margin-left:35.4pt'><span lang=EN-US>sub vcl_recv {<br>  set req.http.X-Orig-Forwarded-For = client.ip;<br>  if (req.url ~ "\.(jpe?g|png|gif|ico|js|css|zip|CSS|mp3|wma|wmv|avi)(\?.*|)$") { <br>    unset req.http.cookie;<br>  }<o:p></o:p></span></p><p class=MsoNormal style='margin-left:35.4pt'><span lang=EN-US> #### backend definition for this request####<o:p></o:p></span></p><p class=MsoNormal style='margin-left:35.4pt'><span lang=EN-US>  set req.backend = default;<br>}<o:p></o:p></span></p><p class=MsoNormal style='margin-left:35.4pt'><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Juan Salinas Contreras<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span lang=ES style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>De:</span></b><span lang=ES style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> varnish-misc-bounces@varnish-cache.org [mailto:varnish-misc-bounces@varnish-cache.org] <b>En nombre de </b>Your Friend<br><b>Enviado el:</b> domingo, 10 de julio de 2011 9:38<br><b>Para:</b> Shibashish<br><b>CC:</b> varnish-misc@varnish-cache.org<br><b>Asunto:</b> Re: Problem with Varnish.<o:p></o:p></span></p></div><p class=MsoNormal><o:p> </o:p></p><table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0><tr><td valign=top style='padding:0cm 0cm 0cm 0cm'><p>hey, here is my vcl file:<o:p></o:p></p><p><o:p> </o:p></p><p>I commented out "sub vcl_fetch" because I got error while starting varnish. <o:p></o:p></p><p><o:p> </o:p></p><p>backend default {<br>.host = "127.0.0.1";<br>  .port = "81";<br>}<br>sub vcl_recv {<br># add a unique header containing the client IP address<br>set req.http.X-Orig-Forwarded-For = client.ip;<br><br># we're only handling static content for now so remove any<br># Cookie that was sent in the request as that makes caching<br># impossible.<br>if (req.url ~ "\.(jpe?g|png|gif|ico|js|css|zip|CSS|mp3|wma|wmv|avi)(\?.*|)$") {<br>unset req.http.cookie;<br>}<br>}<br><br>#sub vcl_fetch {<br># if the backend server adds a cookie to all responses,<br># remove it from static content so that it can be cached.<br># if (req.url ~ "\.(jpe?g|png|gif|ico|js|css|zip|CSS|mp3|wma|wmv|avi)(\?.*|)$") {<br># unset obj.http.set-cookie;<br># }<br>#}<o:p></o:p></p><p><o:p> </o:p></p><p style='margin-bottom:12.0pt'><o:p> </o:p></p><p class=MsoNormal><br>--- Den <b>sön 2011-07-10 skrev Shibashish <i><shib4u@gmail.com></i></b>:<o:p></o:p></p><p class=MsoNormal><br>Hey guys,<o:p></o:p></p><div id=yiv1522376332><div><div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0cm 0cm 0cm 6.0pt;margin-left:4.8pt;margin-right:0cm'><table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0><tr><td valign=top style='padding:0cm 0cm 0cm 0cm'><p><o:p> </o:p></p><p style='margin-bottom:12.0pt'>I am fairly new to the Varnish, I installed Varnish as the frontend to nginx, everything works fine föruton a strange problem that I have never encountered before when I used only the nginx;<br><br>I have an index page that links to the archives of this dress in two different ways:<br>Link 1:<br><a href="http://website.com/blog/archive/index.php" target="_blank">website.com/blog/archive/index.php</a><br>Link 2:<br><a href="http://website.com/blog/archive/" target="_blank">website.com/blog/archive/</a><br><br>Here comes the problem, with Varnish does not link two work, the browser simply can not access the page and after a few seconds, nothing appears in the browser and the address bar shows the address that a page can not be reached, the address that appears in the address bar is:<br><br>website.com:beckendport/blog/archive/<br><br>Configuration of the Web server is 127.0.0.1:beckendport and Varnish 80.<br><br>I don't use htaccess.<br><br>I would be grateful if you help me with this problem.<o:p></o:p></p><p>Thanks!<o:p></o:p></p></td></tr></table><p class=MsoNormal><br>_______________________________________________<br>varnish-misc mailing list<br><a href="/mc/compose?to=varnish-misc@varnish-cache.org" target="_blank">varnish-misc@varnish-cache.org</a><br><a href="https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc" target="_blank">https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc</a><o:p></o:p></p></blockquote></div><div><p class=MsoNormal><o:p> </o:p></p></div><p class=MsoNormal>Please post your vcl file.<o:p></o:p></p><div><p class=MsoNormal><br clear=all>ShiB.<br>while ( ! ( succeed = try() ) );<o:p></o:p></p></div></div></div></td></tr></table><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Calibri","sans-serif"'><o:p> </o:p></span></p></div></body></html>