2👍
✅
It looks like your missing the rewrite directive given in the docs:
url.rewrite-once = (
"^(/media.*)$" => "$1",
"^/favicon\.ico$" => "/media/favicon.ico",
"^(/.*)$" => "/mysite.fcgi$1",
)
Update: You need to change the fastcgi.server
section from /myurl/nonorientable.fcgi
to /mysite.fcgi
so that it matches the rewrite above.
Source:stackexchange.com