I wrote a website in node.js and express. Now I have configured lighttpd to use the node.js server with a subdirectory:
$HTTP["url"] =~ "^/app/" { proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => 3000 ) ) ) }
When I open http://localhost/app/
, I get a 404 error because I wrote something like this:
app.get('/', function (req, res){ res.render('index'); });
Is there a better way to change strings like:
var relPath = '/app'; app.get(relPath + '/', function (req, res){ res.render('index'); });
?
source share