Integrating Hubspot blog without modifying DNS: Possible solutions?

Hey everyone,

I’m in a bit of a pickle and could use some advice. We’ve got this website, let’s call it mysite.com, with a bunch of services already running. Now we want to use Hubspot for our blog, but we need it to show up as mysite.com/blog while keeping everything else as is.

The tricky part is we can’t mess with our DNS settings. We’re already using Kubernetes and Istio for our setup. I’m wondering if there’s a way to hook up the /blog part kinda like a reverse proxy or something? Maybe as an external service?

Has anyone dealt with a similar situation before? Any tips or tricks would be super helpful. Thanks in advance!

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: blog-route
spec:
  hosts:
  - mysite.com
  http:
  - match:
    - uri:
        prefix: /blog
    route:
    - destination:
        host: external-blog-service
        port:
          number: 443

Just a rough idea of what I’m thinking. Does this make sense? Let me know if you need more details!

hey jackwolf, sounds like a tricky situation! have you considered using a cdn like cloudflare? they offer ‘workers’ that can handle reverse proxy stuff without touching your dns. might be worth looking into. good luck with your hubspot integration!