I could not find UI to enable CDN in DNN (DotNetNuke) 9. I used SQL script in order to make a change. These settings are host level changes and affects all the portals.
UPDATE dbo.HostSettings
SET SettingValue='Y', LastModifiedOnDate = GETDATE()
WHERE SettingName='CDNEnabled'
UPDATE dbo.HostSettings
SET SettingValue='Y', LastModifiedOnDate = GETDATE()
WHERE SettingName='EnableMsAjaxCDN'
Once you make the change, you need to restart the application in order to make it effective.
Leave a Reply