You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you alias all of your requests, at / and anything below it, as one CGI script, Apache sets everything in the path as SCRIPT_NAME and empty "" to PATH_INFO, which is not useful for Plack::Handler::CGI to figure out what the root URL path is.
It could be "fixed" either with a complex Apache config, or by introducing middleware that swaps SCRIPT_NAME and PATH_INFO, like we do for a broken version of lighttpd with LighttpdFixScriptName
The text was updated successfully, but these errors were encountered:
when you alias all of your requests, at / and anything below it, as one CGI script, Apache sets everything in the path as SCRIPT_NAME and empty "" to PATH_INFO, which is not useful for Plack::Handler::CGI to figure out what the root URL path is.
It could be "fixed" either with a complex Apache config, or by introducing middleware that swaps SCRIPT_NAME and PATH_INFO, like we do for a broken version of lighttpd with LighttpdFixScriptName
The text was updated successfully, but these errors were encountered: