koajs / file-server

file serving middleware for koa
MIT License
37 stars 12 forks source link

about multi-directory #3

Closed zedgu closed 10 years ago

zedgu commented 10 years ago

Is there any plan to support the multi-directory with custom alias? Such as:

require('koa-file-server')({
  path: {
    assets: './assets',
    avatars: '/mnt/nas/users/uploads/avatars'
})
jonathanong commented 10 years ago

easier just to symlink /mnt/nas/users/uploads/avatars to ./public/avatars or whatever

zedgu commented 10 years ago

okie...