Virtual Directory / Nested Application with Views Pitfall
If you're going to be using Express to render views using a View Engine, you'll need to pass the virtualDirPath value in to your views
`res.render('index', { virtualDirPath: virtualDirPath });`
The reason for doing this is to make yo...