aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/rack-1.1.0/KNOWN-ISSUES
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gems/rack-1.1.0/KNOWN-ISSUES')
-rw-r--r--vendor/gems/rack-1.1.0/KNOWN-ISSUES21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/gems/rack-1.1.0/KNOWN-ISSUES b/vendor/gems/rack-1.1.0/KNOWN-ISSUES
deleted file mode 100644
index a1af5dc1e..000000000
--- a/vendor/gems/rack-1.1.0/KNOWN-ISSUES
+++ /dev/null
@@ -1,21 +0,0 @@
-= 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 "/".
-
- Since lighttpd 1.4.23, you also can use the "fix-root-scriptname" flag
- in fastcgi.server.