Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.       {
  2.          method: 'GET',
  3.          path: '/static/{path}',
  4.          config: {
  5.             handler:function(request,reply){
  6.                console.log('test');
  7.                reply.file('public/' + request.params.path);
  8.             },
  9.             auth: {
  10.                mode: 'try',
  11.                strategy: 'session'
  12.             }
  13.          }
  14.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement