Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. server.route({
  2.    method: 'GET',
  3.    path: '/static/{path}',
  4.    handler: function(request,reply){
  5.       reply.file('public/' + request.params.path);
  6.    }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement