Have nginx in from of an application server where <br><br>/<br>or<br>directory /<br><br>if the index doesn&#39;t exist needs to be sent to backend...<br><br>right now i&#39;m doing this to get it to work sort of<br><br>  location /<br>
  {<br>    index no;<br>    try_files $uri $uri/ @seaside;<br>    error_page 403 = @seaside;<br>  }<br><br>If I don&#39;t have the 403, then trying to get<br><br><a href="http://localhost/">http://localhost/</a><br><br>Results in a 403 forbidden. It doesnt pass it along to backend via fastcgi<br>
<br>How can I have that handled and still have an index file take precedence if it exists?<br>