8.0.3 > Clean urls under nginx

Permalink
I have installed Version 8.0.3 on nginx and have tryed to activate clean urls. My complete nginx directive looks like that:

location / {
   set $do_rewrite 1;
   if (-f $request_filename) {
      set $do_rewrite 0;
   }
   if (-f $request_filename/index.html) {
      set $do_rewrite 0;
   }
   if (-f $request_filename/index.php) {
      set $do_rewrite 0;
   }
   if ($do_rewrite = "1") {
      rewrite ^/(.*)$ /index.php/$1 last;
   }
}


With that configuration i can use "clean urls" for all pages in my installation with the exception of dashboard panels. The call of dashboard panels ends always in an 500er error in jquery.js.

Has anyone an idea for a solution for this behavior? Thanks in advance!

 
72md replied on at Permalink Reply
The solution that works for me, is to change this line of code

try_files $uri $uri/ /{FOLDER}index.php$request_uri /index.php;


into this

try_files $uri $uri/ /{FOLDER}index.php$request_uri /index.php$is_args$args;