view serve-files.js @ 45:df51269bcef4

fix back/fwd nav and player loading
author drewp@bigasterisk.com
date Fri, 06 Dec 2024 01:02:33 -0800
parents ed16fdbb3996
children 1bd17c2e5517
line wrap: on
line source

const express = require('express')
const serveIndex = require('serve-index')

const app = express()

// e.g. /video/files/video-download/movie1/part1.webm

app.use('/video/files',
    express.static('/data'), // serves file content
    serveIndex('/data', { 'icons': true }) // serves dir listings
)

app.listen(8003)