I’m running a Laravel application on platform.myservice.com and using Cloudflare for DNS management with their free SSL certificate.
I need to allow customers to use their own subdomain to access my application while keeping everything behind my infrastructure.
customer.clientsite.com ------> platform.myservice.com
This isn’t a simple redirect but more like domain aliasing. I believe this involves CNAME configuration but I’m not sure about the exact setup.
SSL is required for the application. My main domain has SSL through Cloudflare, but clients may not have SSL on their domains. What’s the best approach to handle SSL in this scenario?
I prefer not to share my server’s IP address directly with clients and want to keep using Cloudflare as my DNS provider. Simply pointing A records to my server IP isn’t the solution I’m looking for.
I’ve been searching for documentation on this setup but haven’t found clear guidance. What is this configuration typically called so I can research it further?