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

javascript - THREE.js reposition vertices for RingGeometry -

javascript - I need to update the text of a paragraph by inline edit -

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