Sha256: 0c32df04d077153a0f39e3b122a351b0d96acc0646e9b21456cf15212c0ce2cf
Contents?: true
Size: 487 Bytes
Versions: 72
Compression:
Stored size: 487 Bytes
Contents
= Known issues with Rack and Web servers * Lighttpd sets wrong SCRIPT_NAME and PATH_INFO if you mount your FastCGI app at "/". This can be fixed by using this middleware: class LighttpdScriptNameFix def initialize(app) @app = app end def call(env) env["PATH_INFO"] = env["SCRIPT_NAME"].to_s + env["PATH_INFO"].to_s env["SCRIPT_NAME"] = "" @app.call(env) end end Of course, use this only when your app runs at "/".
Version data entries
72 entries across 72 versions & 19 rubygems