Reputation: 10692
I am in the process of installing and configuring ColdFusion 11 on IIS 8.5, using the instructions found in Pete Freitag's CF11 Lockdown Guide.
Everything is going fine until I get to section 2.16 - "Create Alias for /CFIDE/scripts". When I attempt to access the ColdFusion Administrator website at https://127.0.0.1/CFIDE/administrator/index.cfm, I get a "File Not Found" exception:
I have configured IIS to Deny access for all /CFIDE sub-directories (Request Filtering at the root), and removed /CFIDE/administrator from the Request Filtering URLs in the CF Admin IIS website.
I tried removing all /CFIDE sub-directories from the Request Filtering for the website, but this accomplished nothing.
Upvotes: 1
Views: 1462
Reputation: 10692
It turns out there is one important step missing from Pete Freitag's wonderful ColdFusion 11 Lockdown Guide.
After running the Web Server Configuration Tool, which adds the CFIDE directory to each website, including your ColdFusion Administrator website, you need to grant permission on the CFIDE directory to the ColdFusion user account.
Upvotes: 1
Reputation: 129
Did you add the following URL deny request filtering in IIS for the site where your CF admin is located: /CFIDE/administrator
Try removing that entry, or create a new IIS site which points to the CF admin and ensure that /CFIDE/administrator is not added as URL deny entry to the IIS request filtering for your CF admin IIS site.
Upvotes: 0