server { listen 1689; root /var/www/kms-server; location / { set $query_param $query_string; if ($http_user_agent ~* (curl|wget)) { set $query_param $query_param&cli=true; } include fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_param QUERY_STRING $query_param; fastcgi_param SCRIPT_FILENAME /var/www/kms-server/backend/route.php; } location /assets {} }