Re: [nodejs] Subfolder as different app?

2013-08-22 Thread greelgorke
here is the explanation by TJ https://vimeo.com/56166857 Am Donnerstag, 22. August 2013 00:50:31 UTC+2 schrieb Diogo Resende: app = express(); your_other_express_app = express(); // ... app.use(/subfolder, your_other_express_app); -- Diogo Resende On Wednesday, August 21, 2013 at 21:41

Re: [nodejs] Subfolder as different app?

2013-08-21 Thread Matt
One of the many great reasons to run a front end proxy like nginx is exactly this. On Wed, Aug 21, 2013 at 4:41 PM, Jose Luis Rivas ghostba...@gmail.comwrote: Hey guys, I have site.com which is running Express. Is there a way to have site.com/subfolder as a different app? Has anyone any

Re: [nodejs] Subfolder as different app?

2013-08-21 Thread Diogo Resende
app = express(); your_other_express_app = express(); // ... app.use(/subfolder, your_other_express_app); -- Diogo Resende On Wednesday, August 21, 2013 at 21:41 , Jose Luis Rivas wrote: Hey guys, I have site.com (http://site.com) which is running Express. Is there a way to have