Created
January 15, 2014 10:37
-
-
Save mani95lisa/8434120 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Hapi = require('hapi'); | |
var internals = {}; | |
internals.main = function () { | |
var server = new Hapi.Server(80, { files: { relativeTo: __dirname } }); | |
server.route([ | |
{ method: 'GET', path: '/{path*}', handler: { directory: { path: '/', listing:true } } }, | |
{method: 'GET', path:'/', handler: {file:'/index.html'}} | |
]); | |
server.start(); | |
}; | |
internals.main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment