How to route to two different AWS applications on the same domain with different URLs using Applicaiton Load...











up vote
1
down vote

favorite












I have a web app (Node.js on Elastic Beanstalk) already serving at example.com. I have a WordPress blog that I want to serve at example.com/blog.



I want to setup AWS Load Balancer to route requests at /blog to my WordPress server and all other requests at / to my web-app. How do I do it using AWS Load Balancer(s)?



My DNS and both of these servers are on AWS. I don't want to setup a self-managed Nginx/HAProxy reverse proxy. If possible, I want to avoid using CloudFront configuration at the moment.










share|improve this question


























    up vote
    1
    down vote

    favorite












    I have a web app (Node.js on Elastic Beanstalk) already serving at example.com. I have a WordPress blog that I want to serve at example.com/blog.



    I want to setup AWS Load Balancer to route requests at /blog to my WordPress server and all other requests at / to my web-app. How do I do it using AWS Load Balancer(s)?



    My DNS and both of these servers are on AWS. I don't want to setup a self-managed Nginx/HAProxy reverse proxy. If possible, I want to avoid using CloudFront configuration at the moment.










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have a web app (Node.js on Elastic Beanstalk) already serving at example.com. I have a WordPress blog that I want to serve at example.com/blog.



      I want to setup AWS Load Balancer to route requests at /blog to my WordPress server and all other requests at / to my web-app. How do I do it using AWS Load Balancer(s)?



      My DNS and both of these servers are on AWS. I don't want to setup a self-managed Nginx/HAProxy reverse proxy. If possible, I want to avoid using CloudFront configuration at the moment.










      share|improve this question













      I have a web app (Node.js on Elastic Beanstalk) already serving at example.com. I have a WordPress blog that I want to serve at example.com/blog.



      I want to setup AWS Load Balancer to route requests at /blog to my WordPress server and all other requests at / to my web-app. How do I do it using AWS Load Balancer(s)?



      My DNS and both of these servers are on AWS. I don't want to setup a self-managed Nginx/HAProxy reverse proxy. If possible, I want to avoid using CloudFront configuration at the moment.







      aws-load-balancer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 at 12:23









      Emad Ehsan

      5003925




      5003925
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          This is possible by adding a listener rule to an Application Load Balancer. Listener rules determine how the load balancer routes requests to the targets in one or more target groups.



          After creating the load balancer, see Listeners >> Add Listener. Add a Rule with a Condition for Path is /blog then select Action forward to send traffic to a separate target group mapped to the Wordpress instances.



          For more see the docs for Listener Rules for Your Application Load Balancer.






          share|improve this answer























          • Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
            – Emad Ehsan
            Nov 22 at 10:23











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374569%2fhow-to-route-to-two-different-aws-applications-on-the-same-domain-with-different%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          This is possible by adding a listener rule to an Application Load Balancer. Listener rules determine how the load balancer routes requests to the targets in one or more target groups.



          After creating the load balancer, see Listeners >> Add Listener. Add a Rule with a Condition for Path is /blog then select Action forward to send traffic to a separate target group mapped to the Wordpress instances.



          For more see the docs for Listener Rules for Your Application Load Balancer.






          share|improve this answer























          • Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
            – Emad Ehsan
            Nov 22 at 10:23















          up vote
          1
          down vote













          This is possible by adding a listener rule to an Application Load Balancer. Listener rules determine how the load balancer routes requests to the targets in one or more target groups.



          After creating the load balancer, see Listeners >> Add Listener. Add a Rule with a Condition for Path is /blog then select Action forward to send traffic to a separate target group mapped to the Wordpress instances.



          For more see the docs for Listener Rules for Your Application Load Balancer.






          share|improve this answer























          • Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
            – Emad Ehsan
            Nov 22 at 10:23













          up vote
          1
          down vote










          up vote
          1
          down vote









          This is possible by adding a listener rule to an Application Load Balancer. Listener rules determine how the load balancer routes requests to the targets in one or more target groups.



          After creating the load balancer, see Listeners >> Add Listener. Add a Rule with a Condition for Path is /blog then select Action forward to send traffic to a separate target group mapped to the Wordpress instances.



          For more see the docs for Listener Rules for Your Application Load Balancer.






          share|improve this answer














          This is possible by adding a listener rule to an Application Load Balancer. Listener rules determine how the load balancer routes requests to the targets in one or more target groups.



          After creating the load balancer, see Listeners >> Add Listener. Add a Rule with a Condition for Path is /blog then select Action forward to send traffic to a separate target group mapped to the Wordpress instances.



          For more see the docs for Listener Rules for Your Application Load Balancer.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 21 at 13:52

























          answered Nov 21 at 3:51









          brennan

          1,750927




          1,750927












          • Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
            – Emad Ehsan
            Nov 22 at 10:23


















          • Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
            – Emad Ehsan
            Nov 22 at 10:23
















          Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
          – Emad Ehsan
          Nov 22 at 10:23




          Thanks buddy. I did exactly this. The website is perfectly accessible at example.com but I get 504 Gateway timeout on example.com/blog . WP server is accessible at it's own Elastic Beanstalk url but not via example.com/blog
          – Emad Ehsan
          Nov 22 at 10:23


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374569%2fhow-to-route-to-two-different-aws-applications-on-the-same-domain-with-different%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Berounka

          Sphinx de Gizeh

          Different font size/position of beamer's navigation symbols template's content depending on regular/plain...