SSL Interceptor

What am I missing here… I dropped the ssl interceptor into my interceptors folder and added the following to my config. My entire application is secure yet when I click on a button that uses event.buildLInk() I am sent to http and therefore to a dead page. What did i miss here?

interceptors = [
{class=“coldbox.system.interceptors.Autowire”,properties={debug=true}},
{class=“coldbox.system.interceptors.SES”,properties={}},
{class=“infinity.interceptors.UserNotificationService”,properties={}},
{class=“infinity.interceptors.AdminNotificationService”,properties={}},
{class=“infinity.interceptors.ssl”,properties={checkSSL=true,pattern=".*"}}
//security
,{class=“coldbox.system.interceptors.security”,
properties={
rulesSource=“xml”,
rulesFile="/infinity/clients/config/securityRules.xml.cfm",
preEventSecurity=“true”,
validatorModel=“authenticationService”
}
}
];

So this probably isnt the right move but I just did a redirect on https to fix the issue… is this a bad idea?

<VirtualHost :80>
ServerName clients.infinity-marketing.com
ServerAlias clients.infinity-marketing.com
DocumentRoot c:/www/
******************************

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://clients.infinity-marketing.com/$1 [R,L]

<VirtualHost :443>
ServerName clients.infinity-marketing.com
ServerAlias clients.infinity-marketing.com
DocumentRoot c:/www/
******************************

SSLEngine on
SSLCertificateFile *******************************
SSLCertificateKeyFile *******************************

ErrorLog "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/logs/ ******************************* "
CustomLog "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/logs/ ******************************* " common

Ya never mind, don’t do that ^ haha

So I totally forgot about testing in a secure environment and by the emails above I had issues last night pushing my project into production. I actually don’t have a http version of the webstite only an https so I wonder if this is causing the issue?

It seems to me the ssl catches the request and then redirects to secure event if it needs to. Is this correct? Basically my app would load fine but when you clicked something that used event.buildLInk() it would post and say event clients.abc.com/account/register could not be found.

Actually if anyone with Coldbox + MySQL experience wants to make a few bucks I have 2 large issues left. I could paypal you the money today if I can get these resolved. I am stressed out and just want to be done with it

1.) This SSL issue
2.) loading a mysql dump file that contains 68 million records (can’t do it from query browser)