# nginx configuration

autoindex off;

location / {
  if (!-e $request_filename){
    rewrite ^(.*)$ /index.php?path=$1;
  }
}