web applications - Different urls on same website being served by different apps? -



web applications - Different urls on same website being served by different apps? -

suppose there website www.xyz.com, possible serve www.xyz.com/firstapp/* 1 application(say rails app) while serving www.xyz.com/secondapp/* application(a nodejs app)?

a reverse proxy can accomplish this. e.g using nginx

location /firstapp/ { proxy_pass http://rubyonrails.org/documentation/; } location /secondapp/{ proxy_pass http://nodejs.org/documentation/; }

web-applications

Comments

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

ubuntu - Bash Script to Check That Files Are Being Created -