* WE RECOMMEND THAT YOU USE SSL PROTECTION FOR YOUR ENTIRE ADMIN:
* To do that, make sure you use a "https:" URL for BOTH the HTTP_SERVER and HTTPS_SERVER entries:

define('HTTP_SERVER', 'https://www.domain.com');
define('HTTPS_SERVER', 'https://www.domain.com');
define('HTTP_CATALOG_SERVER', 'https://www.domain.com');
define('HTTPS_CATALOG_SERVER', 'https://www.domain.com');

above is in the admin, so that is what i did, used https on all four

in the front end, i did the same thing below for both

// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
define('HTTP_SERVER', 'https://www.domain.com');
define('HTTPS_SERVER', 'https://www.domain.com');

here's my question, should i add 'https://domain.com' also? since www is redundant?

tia