Mapping subdirectory to lightsail instance

1

Hello,

I'm building a website (Nextjs) on example.com deployed with AWS Beanstalk. I'd like to create a second website on example.com/blog, a wordpress instance on Lightsail.

Do you know how can I map example.com/blog/* to lightsail and example.com to my EC2 instance ?

Thanks

demandé il y a 2 ans851 vues
3 réponses
0

To do that, you'll probably need a server of some kind that has a static IP and that has example.com associated with it. This server would be in front of Beanstalk and Lightsail and could route the traffic appropriately. You could manage such a server yourself or use a managed load balancer with some custom rules to do the job. Here's some info about ALB that might be helpful: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/listener-update-rules.html.

Another option to consider is to host your blog at blog.example.com. That way, you could use a simple A record to point to the static IP of your Lightsail Instance for your blog. You could use another ALIAS or CNAME record to point to your Beanstalk app. Here's some more info: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-beanstalk-environment.html.

AWS
Alex
répondu il y a 2 ans
0

I would use CloudFront for this. It gives you the ability to map URL paths to specific destinations (origins in CloudFront). You also get caching; global reach; the ability to use Lambda@Edge to manipulate requests and responses in (near) real-time; and lower data transfer rates from origins in AWS.

profile pictureAWS
EXPERT
répondu il y a 2 ans
0

Thanks for your answers ! I managed to do that with another method that I'll describe below just so you know.

Don't hesitate to tell me if my method is not good, but it works so far.

répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions