${uri}index.php causing error.

Maxim Dounin mdounin at mdounin.ru
Thu Apr 8 13:01:29 MSD 2010


Hello!

On Thu, Apr 08, 2010 at 09:08:25AM +1000, Leonardo Crespo wrote:

> Morning!
> 
> I've searched the wiki for this issue and I wasn't able to solve it,
> can anyone help?
> 
> I'm assuming nginx is getting lost with the {} on ${uri}....
> 
> This line
> >try_files $uri.php ${uri}index.php =404;
> 
> Is giving me this error:
> >Starting nginx: [emerg]: directive "try_files" is not terminated by ";" in /usr/local/nginx/sites-enabled/domain.com.au:27

- try_files $uri.php ${uri}index.php =404;
+ try_files $uri.php "${uri}index.php" =404;

Curly brackets aren't allowed outside quoted strings as they 
denote configuration blocks.

Maxim Dounin



More information about the nginx mailing list