faceyspacey.com
faceyspacey.com

Reputation: 2630

Setting up domain.com as the same Meteor deployment as www.domain.com

For a Meteor JS deployment, how do your point domain.com at the same deployment as www.domain.com?

I have the A record pointing at the same IP address as www., but I'm getting the "there is no site deployed at this address message":

http://emiliotelevision.com

It appears Meteor's servers are not smart enough to make the site on www.emiliotelevision.com, which is working, also work for the equivalent with out the www..

Is there a better solution for this than pointing at another one of your own servers configured to redirect to the www. version?

Upvotes: 1

Views: 460

Answers (2)

Charles Holbrow
Charles Holbrow

Reputation: 4231

You need to set a domain redirect. emiliotelevision.com should redirect to www.emiliotelevision.com.

Now you can meteor deploy to www.emiliotelevision.com.

You may be able to set up the redirect from where you purchased the domain main.

Upvotes: 0

Tarang
Tarang

Reputation: 75945

Use a CNAME record for both www.emiliotelevision.com and emiliotelevision.com that points to yourserver.meteor.com

Upvotes: 1

Related Questions