aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authordilpreet92 <dilpreet@vinsol.com>2014-11-26 12:32:12 +0530
committerRafael Mendonça França <rafael.franca@plataformatec.com.br>2014-11-26 05:42:24 -0200
commit5a9acfdfa039cc6002e235168e2ae0acec1ea8b9 (patch)
tree43bf867999db6fc1ba0fabe44a3945bbe979e166 /actionpack/lib/action_controller
parentfc20bfd4f16bab3dc207923c343f3e9bb5a924cb (diff)
downloadrails-5a9acfdfa039cc6002e235168e2ae0acec1ea8b9.tar.gz
rails-5a9acfdfa039cc6002e235168e2ae0acec1ea8b9.tar.bz2
rails-5a9acfdfa039cc6002e235168e2ae0acec1ea8b9.zip
getting the location of the server
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 7bbf938987..2e9121167a 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -44,10 +44,10 @@ module ActionController
# The full request object is available via the request accessor and is primarily used to query for HTTP headers:
#
# def server_ip
- # location = request.env["SERVER_ADDR"]
+ # location = request.env["REMOTE_ADDR"]
# render plain: "This server hosted at #{location}"
# end
- #
+ #
# == Parameters
#
# All request parameters, whether they come from a GET or POST request, or from the URL, are available through the params method