Coldfusion 10

A quick reference page for CIT Hosting's Coldfusion 10 installation.

Adobe Coldfusion 10 documentation: http://helpx.adobe.com/coldfusion/archive.html

Coldfusion Administrator (CFAdmin)

Hosting Customers have the ability to configure and control their Coldfusion 10 service. The Coldfusion Administrator is CUWebauth protected (netid and password), and the access is granted from the permits or AD Group that were assigned/given at the time of the request.

Adding Customized JAR Files

Customers can add their own jar files to their environments by using a webdav client and uploading the files to the /jars directory, OR you can drop them in the server10/lib subdirectory. A restart of the Coldfusion instance will be needed.

Protecting your site with CUWebauth/Netid and Password

When requesting a new url/virtual host for your application, this is a good time to think whether or not your site, or any part of your website will need to be protected by CU WebAuth and require visitors to log in with their NetID and password.

Sites that utilize CU WebAuth are required to use SSL.

There are two options for having an SSL configured. One is referred to as "HTTPS" and one as "BOTH".

If you wish to have ALL traffic protected by SSL we recommend that you request "HTTPS" for the protocol. This will create a redirect so that any traffic that goes to //[my site]/ will be redirected to //[my site]/.

However if only parts of your site need login access, more care in configuration and use of .htaccess files will be needed. This means a portion of your site will be protected by SSL while the option portion is not. In this case if you specify "BOTH" then you will be responsible for determining whether a page can be displayed using SSL or non-SSL.

When using "BOTH" non-SSL connections have NO restrictions, that means that all files are publicly available unless you explicitly put in a ".htaccess" to protect the directory using CU WebAuth.

Some examples of restricting access via a ".htaccess" file:

Require SSL (will just cause a 403 error)

SSLRequireSSL

Redirect to SSL

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Note that if you protect a directory with CU WebAuth and you go to the non-SSL site you will get the following error "CUWebAuth error... Server is not properly configured. Check the Kerberos principal.". In this case you need to be sure to specify the "https" URL and not the "http" URL to avoid getting the error. If you wish to setup a redirect from the non-SSL site to the SSL site for the ".htaccess" protected directory you'll either need to specify the redirect in a parent directory or via a custom vhost include.