Questions tagged [cname]

A CNAME record or Canonical Name record is a type of resource record in the Domain Name System (DNS) that specifies that the domain name is an alias of another, canonical domain name.

This is typically used when running multiple services (like an FTP server and a webserver; each running on different ports) from a single IP address. Each service can then have its own entry in DNS (like ftp.example.com and www.example.com).

877 questions
6
votes
1 answer

Route53 route subdomain to AWS Lambda?

I want to route my.domain.com to the url of my lambda function (which I setup and working via the API Gateway). I can't seem to be able to do this. I also can't seem to be able to to CNAME to anything (so my.domain.com results in a dns error when I…
tt_Gantz
  • 2,268
  • 1
  • 19
  • 41
6
votes
1 answer

Hosting software on my server that allows users to point their domain to using CNAME

I am creating software that allows users to either have their own custom subdomain (e.g: theirsubdomain.mydomain.com) or point a CNAME from their own domain to my website address (e.g: theirsubdomain.theirdomain.com). I've contacted my host about…
Ben Sinclair
  • 3,748
  • 6
  • 47
  • 85
6
votes
2 answers

Github pages with custom CNAME security

Github allows you to host static pages on your own domain name. The procedure is described here: https://help.github.com/articles/setting-up-a-custom-domain-with-pages It mentions that you have to create a file called CNAME in your repository to…
konrad
  • 2,772
  • 24
  • 24
6
votes
1 answer

Broken links and layout after referring custom domain to jekyll-generated github project page

After changing the CNAME to my custom domain (http://alphagirls.cc) the index and links to posts and static pages won't render with the look+feel specified in my CSS. The site is supposed to refer to a project page repo on my github account:…
usrrname
  • 330
  • 2
  • 9
6
votes
1 answer

How can I use Jekyll with my domain, but hosted on GitHub?

I would like to switch from WordPress to Jekyll. I already have migrated the articles (see new Jekyll articles + rendered page and old WordPress site). Now I would like to have the old URLs: Old URL : …
Martin Thoma
  • 91,837
  • 114
  • 489
  • 768
6
votes
1 answer

How can I let users visit amazon s3 html/javascript pages through my custom domain?

I have a pyramid/python application with a page at www.domain.com that creates html pages at s3.amazonaws.com/testbucket/object_name. Right now in this test bucket, I also have javascript files that each object(html page) utilizes. I want it so that…
BigBoy1337
  • 3,709
  • 12
  • 55
  • 101
6
votes
3 answers

Pointoing my Heroku Rails app to www and without www works only for an hour?

My Rails app works with Heroku and if I set my CNAME at my domain register Afrihost to www.domain and without the www it works fine for an hour. Then it kills the app without the www domain infront and I have to log in and change the dns…
Erin Walker
  • 769
  • 1
  • 10
  • 28
5
votes
3 answers

How to check if a domain name is a CNAME in PHP

How do I check if the URL accessing the page is the original URL or if it's a CNAME record. For example, I have a site domain.com. Users can setup a CNAME where they link www.otherdomain.com to our site domain.com. From our server point of view, how…
Pinkie
  • 9,492
  • 21
  • 76
  • 122
5
votes
3 answers

How do you set up a cname for an S3 bucket using Amazon Route 53?

I am making a personal site for myself and I've decided to host it on Amazon S3. I'm also trying to use Amazon Route 53 for the nameserver, but I'm having some trouble getting it to work. I'm trying to set up a CNAME that points my domain name…
clone45
  • 8,672
  • 6
  • 32
  • 42
5
votes
1 answer

SSL inheritance on DNS CNAME

If I create an SSL Certificate for secure.mydomain.com and I create the following DNS record: alias.otherdomain.com CNAME secure.mydomain.com So that alias.otherdomain.com points to secure.mydomain.com, will the SSL certificate be valid if I surf…
Mark
  • 57,724
  • 41
  • 114
  • 149
5
votes
2 answers

Github pages show "CNAME is already taken" although it is not

I want to host the repository https://github.com/username/username.github.io on github pages and use the custom subdomain user.institution.ac.in. I added a CNAME record for username.github.io in my domain's DNS settings, but when I tried to add a…
5
votes
2 answers

Allow users to use custom domain to my cloudfront app

I have a cloud front app with domain xyz123.cloudfront.net. This CloudFront is then mapped to domain sub1.mydomain.com. For this, I followed these steps. Added SSL through AWS CloudFront pannel to *.mydomain.com Added A Alias record in Route 53 to…
Adarsh Madrecha
  • 2,897
  • 9
  • 45
  • 79
5
votes
1 answer

Using wildcard subdomains with wildcard SSL on Heroku

We have an app recently deployed to Heroku. I think we have hit the wall in terms of our requirements (please make my conclusion wrong ) . It's a project management app. Management has decided to go for all SSL solution hence we got ourselves…
kaji
  • 7,169
  • 1
  • 18
  • 17
5
votes
1 answer

How can I get the CNAME of a host for which DNS resolution fails (NXDOMAIN) in Go?

I'm looking for a way (in Go) to get the CNAME (if any) of a given host, whether that host's DNS resolution fails or not. The DNS resolution of a host may fail and yield NXDOMAIN, but the host in question may still have a CNAME record. At the time…
jub0bs
  • 46,795
  • 22
  • 148
  • 157
5
votes
2 answers

Sendgrid "Sender Authentication" on Azure

I have an Azure SendGrid account that works great. I can send e-mails no problem with the usual API. I need to setup Sender Authentication (2 reasons, first it will help with receiver finding it in their junk and more importantly it will allow me…