@@ -42,17 +42,18 @@ below.
42
42
<tt>QUERY_STRING</tt>:: The portion of the request URL that
43
43
follows the <tt>?</tt>, if any. May be
44
44
empty, but is always required!
45
- <tt>SERVER_NAME</tt>, <tt>SERVER_PORT</tt>::
46
- When combined with <tt>SCRIPT_NAME</tt> and
45
+ <tt>SERVER_NAME</tt>:: When combined with <tt>SCRIPT_NAME</tt> and
47
46
<tt>PATH_INFO</tt>, these variables can be
48
47
used to complete the URL. Note, however,
49
48
that <tt>HTTP_HOST</tt>, if present,
50
49
should be used in preference to
51
50
<tt>SERVER_NAME</tt> for reconstructing
52
51
the request URL.
53
- <tt>SERVER_NAME</tt> and <tt>SERVER_PORT</tt>
54
- can never be empty strings, and so
55
- are always required.
52
+ <tt>SERVER_NAME</tt> can never be an empty
53
+ string, and so is always required.
54
+ <tt>SERVER_PORT</tt>:: An optional +Integer+ which is the port the
55
+ server is running on. Should be specified if
56
+ the server is running on a non-standard port.
56
57
<tt>HTTP_</tt> Variables:: Variables corresponding to the
57
58
client-supplied HTTP request
58
59
headers (i.e., variables whose
@@ -122,6 +123,9 @@ and should be prefixed uniquely. The prefix <tt>rack.</tt>
122
123
is reserved for use with the Rack core distribution and other
123
124
accepted specifications and must not be used otherwise.
124
125
126
+ The <tt>SERVER_PORT</tt> must be an Integer if set.
127
+ The <tt>SERVER_NAME</tt> must be a valid authority as defined by RFC7540.
128
+ The <tt>HTTP_HOST</tt> must be a valid authority as defined by RFC7540.
125
129
The environment must not contain the keys
126
130
<tt>HTTP_CONTENT_TYPE</tt> or <tt>HTTP_CONTENT_LENGTH</tt>
127
131
(use the versions without <tt>HTTP_</tt>).
0 commit comments