Not sure if I've done this properly, but I seem to have gotten it working at least.
Added this to my existing stuff for my root location block in the .conf file for my site:
Code:
rewrite newscore\.php /arcade.php?sendscore=legacy break;
if ($query_string ~ "func=storeScore"){
rewrite ^(.*)$ /arcade.php break;
}
if ($query_string ~ "do=liveinstall"){
rewrite ^(.*)$ /$document_root/admincp/arcade_admin.php?$query_string&do=review&import=browse&system=v3a redirect;
}
}
And then added this in its own block in the same file:
Code:
location /arcade {
rewrite ^/arcade/gamedata/(.*) /dbtech/vbarcade/media/$1 break;
}
location /crossdomain {
rewrite ^/crossdomain\.xml /dbtech/vbarcade/crossdomain.xml break;
}