<div dir="ltr">On Tue, Feb 26, 2013 at 1:06 PM, Programação-Fabrício <span dir="ltr"><<a href="mailto:programacao@maxmeio.com" target="_blank">programacao@maxmeio.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">It is possible to have a backend on a shared hosting? When I put in the url of the site, it tries to access the server root.<div>
<br></div><div><div>backend default {</div><div>    .host = "<a href="http://mydomain.com" target="_blank">mydomain.com</a>";</div>
<div>    .port = "80";</div><div>}<br></div><div><br></div><div><a href="http://mydomain.com" target="_blank">mydomain.com</a> is on a shared hosting.</div></div></div></blockquote><div><br></div><div style>Yes, it is possible.</div>
<div style><br></div><div style>Instead of the ".url" on the backend configuration, you can use the ".request" to generate a custom request. For example:</div><div style><br></div><div style>backend default {</div>
<div style>  .host = "shared-server-ip";</div><div style>  .port = "80";</div><div style><div>  .request =</div><div>    "GET / HTTP/1.1"</div><div>    "Host: <a href="http://www.my-vhost-domain.com">www.my-vhost-domain.com</a>"</div>
<div>    "Connection: close";</div><div>}</div><div><br></div><div style>[]'s</div><div style>Hugo</div><div style><a href="http://www.devin.com.br">www.devin.com.br</a></div></div></div>
</div></div>