From 67d7757e9f285539decc2b94e519fcfc576d4cc5 Mon Sep 17 00:00:00 2001 From: tim-kos Date: Mon, 22 Feb 2016 12:11:42 +0100 Subject: [PATCH] fix hardcoded basePath --- cmd/tusd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tusd/main.go b/cmd/tusd/main.go index dbaaa11..d5a1d6d 100644 --- a/cmd/tusd/main.go +++ b/cmd/tusd/main.go @@ -89,7 +89,7 @@ func main() { handler, err := tusd.NewHandler(tusd.Config{ MaxSize: maxSize, - BasePath: "files/", + BasePath: basepath, DataStore: store, NotifyCompleteUploads: true, })