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
Post a Comment