Server: fix static paths
authorChocobozzz <florian.bigard@gmail.com>
Tue, 1 Nov 2016 18:50:56 +0000 (19:50 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Tue, 1 Nov 2016 18:50:56 +0000 (19:50 +0100)
server.js

index 18d9a087c9d66a5533a48d56f0b29455a226d40f..a7d7e781cf311709e702d22464066b8f4c29c06b 100644 (file)
--- a/server.js
+++ b/server.js
@@ -77,15 +77,15 @@ app.use('/client/*', function (req, res, next) {
   res.sendStatus(404)
 })
 
-const torrentsPhysicalPath = path.join(__dirname, constants.CONFIG.STORAGE.TORRENTS_DIR)
+const torrentsPhysicalPath = constants.CONFIG.STORAGE.TORRENTS_DIR
 app.use(constants.STATIC_PATHS.TORRENTS, cors(), express.static(torrentsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE }))
 
 // Videos path for webseeding
-const videosPhysicalPath = path.join(__dirname, constants.CONFIG.STORAGE.VIDEOS_DIR)
+const videosPhysicalPath = constants.CONFIG.STORAGE.VIDEOS_DIR
 app.use(constants.STATIC_PATHS.WEBSEED, cors(), express.static(videosPhysicalPath, { maxAge: constants.STATIC_MAX_AGE }))
 
 // Thumbnails path for express
-const thumbnailsPhysicalPath = path.join(__dirname, constants.CONFIG.STORAGE.THUMBNAILS_DIR)
+const thumbnailsPhysicalPath = constants.CONFIG.STORAGE.THUMBNAILS_DIR
 app.use(constants.STATIC_PATHS.THUMBNAILS, express.static(thumbnailsPhysicalPath, { maxAge: constants.STATIC_MAX_AGE }))
 
 // Client application