I am new to Umbraco and I have been tasked with Converting/ Upgrading a site created in Version 8 to Version 10.
I have managed to work out a big cunch of what I need to do but can't work out how to change the default admin url from /umbraco to some thing else as the original site uses a different URL for the Admin console.
Is this done by adding setting to the appsettings.json file or is it done by changing the configuration on IIS.
I have to agree with the comments saying that it a security issue if you can't change it from /umbraco to some else like /cmsadmin The site I am trying to upgrade had the Admin url changed for security reasons.
Umbraco Admin URL in Version 10
Hi,
I am new to Umbraco and I have been tasked with Converting/ Upgrading a site created in Version 8 to Version 10.
I have managed to work out a big cunch of what I need to do but can't work out how to change the default admin url from /umbraco to some thing else as the original site uses a different URL for the Admin console.
Is this done by adding setting to the appsettings.json file or is it done by changing the configuration on IIS.
Hi Darren,
It can be done in appsettings.json inside Umbraco > CMS> Global> UmbracoPath.
Please find below sample.
Refer below link to get more information about global settings.
https://our.umbraco.com/Documentation/Reference/Configuration/GlobalSettings/
I have updated my config and all I get now is a blank page.
But looking at this there no way to do what I want.....
https://github.com/umbraco/Umbraco-CMS/issues/12593
I have to agree with the comments saying that it a security issue if you can't change it from /umbraco to some else like /cmsadmin The site I am trying to upgrade had the Admin url changed for security reasons.
Hi Darren,
you can resolve blank page issue using again some fixes inside appsetting.json
And add one more setting in csproj file.
Hopefully this information can help you. :)
I have updaged the proj file see the screen shots:
I have updated the config file to
"Umbraco": { "CMS": { "Global": { "Id": "", "SanitizeTinyMce": true, "ReservedUrls": "~/admin/", "ReservedPaths": "~/admin/", "UmbracoPath": "/admin" },
But when I go to the URL I get the following:
I think this has been logged as an issue
Oh, hadn't realised they are dumping it completely!
Thanks for the help.
is working on a reply...