Currently having issues with my domains DNS poiting to Umbraco Cloud Starter project. I've deployed my site to the Live environment and updated the hostnames and within the DNS of my doamain changed to the following:
A Records to either or both IPv4 addresses:
104.19.191.28
104.19.208.28
I assummed Umbraco Cloud would generate it's own SSL certificate, or is there another step I need to address to resolve this, any help would be much appreciated.
Did you add the hostnames in the portal (https://www.s1.umbraco.io/project/PROJECTNAME/hostnames) as well? If you did, does it say "Protected" in the status column?
You need to add both saietta.com and www.saietta.com in the portal, while you should only add the one you want as the canonical in Umbraco, and add a 301 redirect (or a canonical meta tag on all pages) for the other one.
Thanks for getting back to me, could you provide an example of a canonical meta tag, is it possible to add a 301 redirect to all non www within the webconfig file?
If it's an Umbraco 10+ project it should go into the src/UmbracoProject/ folder.
If you want to test it first, change Permanent to Found and test to make sure you're getting a 302 response — when you've confirmed it works (i.e. no typos etc.) change it back to Permanent to get a 301 instead.
Going Live with Umbraco Cloud - DNS / SSL Help
Currently having issues with my domains DNS poiting to Umbraco Cloud Starter project. I've deployed my site to the Live environment and updated the hostnames and within the DNS of my doamain changed to the following:
A Records to either or both IPv4 addresses: 104.19.191.28 104.19.208.28
I assummed Umbraco Cloud would generate it's own SSL certificate, or is there another step I need to address to resolve this, any help would be much appreciated.
But receive the below error
Hi Nick,
Did you add the hostnames in the portal (https://www.s1.umbraco.io/project/PROJECTNAME/hostnames) as well? If you did, does it say "Protected" in the status column?
You need to add both
saietta.com
andwww.saietta.com
in the portal, while you should only add the one you want as the canonical in Umbraco, and add a 301 redirect (or a canonical meta tag on all pages) for the other one.Does this make sense?
/Chriztian
Thanks for getting back to me, could you provide an example of a canonical meta tag, is it possible to add a 301 redirect to all non www within the webconfig file?
These are my current settings:
You can add a Web.config like this:
If it's an Umbraco 10+ project it should go into the
src/UmbracoProject/
folder.If you want to test it first, change
Permanent
toFound
and test to make sure you're getting a302
response — when you've confirmed it works (i.e. no typos etc.) change it back toPermanent
to get a301
instead./Chriztian
Many thanks Chiztian, both your posts helped with the issue.
is working on a reply...