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

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -