Installation and deployment Questions on installation, system configuration and deployment to the live server.
Version 4.x > Installation and deployment > Securing/Changing CMSDesk path View modes: 
User avatar
Member
Member
daniel.johnston-redington.co - 10/26/2009 10:32:14 AM
   
Securing/Changing CMSDesk path
Hi all,

We intend to deploy kentico to the live server with limited access to CMSDesk for a moderator.

Does anybody have any experience/advice on deploying the CMSDesk to a live server.

Is there anyway to change the folder name or path to 'CMSDesk'?
Is there a way to apply additional security to the CMSDesk folder? For example, the main site uses forms security, is there a way to apply windows security to just the CMSDesk folder?

Many thanks for your time.

User avatar
Member
Member
daniel.johnston-redington.co - 10/26/2009 11:31:25 AM
   
RE:Securing/Changing CMSDesk path
I've managed to lock down using authorization in the web.config:
<location path="CMSDesk">
<system.web>
<authorization>
<allow roles="CMSDeskAdmin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>

system.web>
<authorization>
<deny users="?"/>
</authorization>
.....

Which resolves this issue.

I'd be interested to know if it is possible to change/alias the CMSDesk path though?

User avatar
Kentico Developer
Kentico Developer
kentico_helenag - 11/2/2009 3:14:13 AM
   
RE:Securing/Changing CMSDesk path
Hello,

regrettably, we do not support the possibility of CMSDesk moving. However, you could move or rename the CMSDesk folder and
1. ensure the handle code in Global.asax.cs (redirect all URLs containing CMSDesk to new location) or
2. replace all hard-coded URLs in CMSDesk folder containing “CMSDesk” substring by the new location.

Best regards,
Helena Grulichova