By default, Customer.io's tracked links that use your custom subdomain will be generated as non-secure HTTP links.
Customer.io has released documentation on how to create a proxy to their service using AWS Cloudfront. This repository features a AWS CloudFormation template which will create the Cloudfront distribution as documented by Customer.io, and request a free SSL Certificate with a single command.
You’ll need to have the AWS Command Line Interface installed and configured to connect to your AWS account. On a Mac with Homebrew it's as easy as entering the command:
$ brew install awscli
If you don't have or want to use Homebrew, you’ll need Python 2.6.5 or higher and to install using Pip:
$ pip install awscli
For Windows, download and install the installer from here.
Enter aws configure
at the command line, and then press Enter.
$ aws configure
AWS Access Key ID [None]:
AWS Secret Access Key [None]:
Default region name [None]:
Default output format [None]:
If your AWS account requires Multi-Factor Authentication (MFA), then aws-mfa makes it easy to manage your AWS SDK Security Credentials when MFA is enforced on your AWS account.
- Clone this repository
$ mkdir aws-cloudfront-customerio-proxy && cd $_
$ git clone https://github.com/loganbussey/aws-cloudfront-customerio-proxy.git .
- Run
setup
and follow the prompts:
$ ./setup
This script will help you setup a Cloudfront Distribution for a Customer.io HTTPS link tracking proxy and request a SSL Certificate for the subdomain that you choose.
Enter your link tracking subdomain [ENTER]: link.example.com
Enter your Customer.io tracking domain [ENTER]: track.customer.io
Which validation method would you like to use for your SSL Certificate?
EMAIL
DNS
Which would you like to use? EMAIL
Enter a CloudFormation stack name [customerio-proxy] [ENTER]: my-customerio-proxy
Note: If you choose email as the domain validation method, you will need access to the domain administrators inbox to validate the certificate creation. If you choose DNS
, then you will need to validate the domain with a CNAME
.
To check on the status of the stack creation the following AWS services will be useful:
-
Point your domains to the Cloudfront distributions that were created.
-
Once you are sure that your distribution is properly pointing to Customer.io's API, head back to Customer.io and go to your Workspace Settings for Email. If you haven’t already set up your link tracking domain (e.g. link.example.com), enter it now in the HOST NAME field and click the Verify domain button to re-validate the domain. You should now pass the HTTPS check and tracking links will use HTTPS by default.
If you need help setting this up or with your Segment implementation in general, get in touch with us at hello@loganbussey.com, or visit Logan Bussey for more information.