In Rails, what's the best way to get the ip address of the client connecting to the server?
Here are two ways I've found:
request.remote_ip request.env['HTTP_X_REAL_IP']
I would just use the request.remote_ip that's simple and it works. Any reason you need another method?
request.remote_ip
See: Get real IP address in local Rails development environment for some other things you can do with client server ip's.
1.4m articles
1.4m replys
5 comments
57.0k users