Custom Domains
If you've deployed the Sublime Platform via our AWS CloudFormation deployment, it's simple to set up a custom domain for your instance, such as sublime.example.com:
- In the AWS console, navigate to the same region in which you deployed the Sublime Platform
- Request a public certificate for the custom domain you want to use through AWS Certificate Manager
- In the EC2 Load Balancers interface, locate the
Sublime-Platform-ALBload balancer CloudFormation created for you and add the certificate you created to the load balancer's HTTPS listener - Create a CNAME DNS record pointing your custom domain to the load balancer's DNS name (which should start with
Sublime-Platform-ALB-) - Copy the ARN for the certificate you set in step (4). Navigate to AWS Systems Manager and then Parameter Store. Select the
/sublime-security/self-signed-acm-certificate-for-sublime-platformparameter and click Edit. Replace the current value with the ARN of your new certificate and Save Changes.
That's it!
Setting up a domain for Track Link Clicks Action and Quarantine Digests
When enabling Track Link Clicks Action or Quarantine Digests, you will need to setup a subdomain to use for the redirect traffic. Follow these steps:
- In the AWS console, navigate to the same region in which you deployed the Sublime Platform
- Request a public certificate for the custom click tracking domain you want to use through AWS Certificate Manager. For example
clicks.sublime.myorg.comwheremyorg.comis a domain you own (e.g. you might havesublime.myorg.comfor the Sublime UI). - In the EC2 Load Balancer interface, locate the
Sublime-Click-Tracking-ALBload balancer CloudFormation created for you and add the certificate you created to the load balancer's HTTPS listener. - Create a CNAME DNS record pointing your custom domain to the load balancer's DNS name (which should start with
Sublime-Click-Tracking-ALB-) - Copy the ARN for the certificate you set in step (4). Navigate to AWS Systems Manager and then Parameter Store. Select the
/sublime-security/click-tracking-acm-certificateparameter and click Edit. Replace the current value with the ARN of your new certificate and Save Changes. - Set the redirect service DNS name. This can be done on the
Track Link ClicksAction page or via a direct API call toPATCH /v1/orgs/mine/settingswith{"url_defense_base_url": "https://<your-redirect-service-dns-name>"}.
Updated 5 days ago