mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
port is appended twice to HTTP_HOST when host already has the port
This commit is contained in:
@@ -257,19 +257,19 @@ module ActionDispatch
|
||||
end
|
||||
end
|
||||
|
||||
port = host.split(':')[1]
|
||||
hostname, port = host.split(':')
|
||||
|
||||
env = {
|
||||
:method => method,
|
||||
:params => parameters,
|
||||
|
||||
"SERVER_NAME" => host.split(':')[0],
|
||||
"SERVER_NAME" => hostname,
|
||||
"SERVER_PORT" => (port ? port : (https? ? "443" : "80")),
|
||||
"HTTPS" => https? ? "on" : "off",
|
||||
"rack.url_scheme" => https? ? "https" : "http",
|
||||
|
||||
"REQUEST_URI" => path,
|
||||
"HTTP_HOST" => [host, port].compact.join(':'),
|
||||
"HTTP_HOST" => host,
|
||||
"REMOTE_ADDR" => remote_addr,
|
||||
"CONTENT_TYPE" => "application/x-www-form-urlencoded",
|
||||
"HTTP_ACCEPT" => accept
|
||||
|
||||
Reference in New Issue
Block a user