Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating broken link for Rack protocol spec #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 04-environment/01-overview/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Environment Overview
status: live
---

The Slim Framework implements a derivation of the [Rack protocol](http://rack.rubyforge.org/doc/files/SPEC.html). When
The Slim Framework implements a derivation of the [Rack protocol](http://rubydoc.info/github/rack/rack/master/file/SPEC). When
you instantiate a Slim application, it immediately inspects the `$_SERVER` superglobal and derives a set of environment
variables that dictate application behavior.

Expand All @@ -23,7 +23,7 @@ the power to - among other things - manipulate environment variables before and/
### Environment Variables

The following text respectfully borrows the same information originally available at
<http://rack.rubyforge.org/doc/files/SPEC.html>. The environment array must include these variables:
<http://rubydoc.info/github/rack/rack/master/file/SPEC>. The environment array must include these variables:

REQUEST_METHOD
: The HTTP request method. This is required and may never be an empty string.
Expand Down