To use custom domian to access bluemix app directly

I want to use my own domain to access my bluemix app directly by registering my own domain. Therefore godaddy requires a bluemix nameserver as I can find it or you may know another way to access it directly by the registered domain

+3


source to share


3 answers


Here's an alternative way you can redirect your application to your web page:

1: Below your application name, you will see "Routes" with your bluemix url. At the end, you can edit the routes. Click on it. enter image description here 2: A pop-up window appears with one option "Domain Management". Click on it. Alternatively, you can go to this page by clicking "Manage Organization".

3: On the landing page, you can add a new domain. Add your site name here.enter image description here



4: Now go back to editing routes. And add a new route. Your site name will appear. Add a name to your app. Assuming you give "myapp" as the name and your web page name is "mywebsite.com", then your application will be redirected to your subdomain named "myapp.mywebsite.com". When you save, you can see that this new route is added to your existing routes for your application.

This is the first part. Now go to your domain provider and add a new alias with the application name. "myapp.mywebsite.com" and pass the name alis as the actual route you provided bluemix. After that, your application will be visible on your website.

+7


source


A similar issue was addressed in the following question:

https://stackoverflow.com/questions/27588386/how-to-find-bluemix-nameserver



You tried?

+1


source


You can follow what @Manish suggested, but instead of creating a CNAME alias in your DNS configuration, you can create an A record indicating one of the following IPs

US-SOUTH: 75,126.81.68 EU-GB: 5.10.124.142 AU-SYD: 168.1.35.169

according to the scope your application is running in.

0


source







All Articles