Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Host name in Rails 3?

In Rails 2.3, I could just use HOST to get my hostname but it seems it's not available anymore. What can I use instead?

I just want something that returns localhost:xxxx (with real port number) when I run the code from my machine, and http://www.mysite.com when I run it in production.

like image 510
alex Avatar asked Aug 22 '11 23:08

alex


1 Answers

You have several options:

  • call system's hostname command (assuming it's *nix): `hostname`
  • use the socket gem:

    require 'socket'

    Socket.gethostname

  • in case you just want to know the current domain the request visits: request.domain

Update

From the request object, we can fetch both the host and the port, please check out these methods:

  • request.protocol
  • request.host
  • request.port

You could build the full url from these methods.

From my personal experience, for most projects you might have a fixed domain for each environment, and usually configure that in a yaml file or so (for example, to send email and use urls with domain name in the email body, we usually read the config and set options for url helper). So I usually just read the current environment's urls configuration and use them from the code.

like image 182
James Chen Avatar answered Sep 21 '22 01:09

James Chen