You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Hi,
First of all, thanks for your wonderful library !
Here my stack :
Frontend : vuejs + tus-js-client
Backend : Symfony v6 + Apache 2.4.51
I'm facing the following issue : locally, i can resume successfully, but in production env, i can't resume...
I'm using the FileStore adapter
Here are my tus cache file according to the following the scenario : trigger an upload and stop it with the "abort" function.
My first investigations show me that the TUS POST request don't send the header "Connection: keep-alive" (but it is ok locally on my own server). could it be the root cause ?
Description
Hi,
First of all, thanks for your wonderful library !
Here my stack :
I'm facing the following issue : locally, i can resume successfully, but in production env, i can't resume...
I'm using the FileStore adapter
Here are my tus cache file according to the following the scenario : trigger an upload and stop it with the "abort" function.
Locally :
{ "tus:server:49255025-ed5a-4c28-9c96-1e42ab66ec3c": { "offset": 3309568, "name": "2020-05-03_10-18-25.mp4", "size": 95861731, "checksum": "", "location": "http:\/\/localhost:8222\/private\/video\/upload\/49255025-ed5a-4c28-9c96-1e42ab66ec3c", "file_path": "C:\/temp\/var\/data\/in\/videos\/temp\/2020-05-03_10-18-25.mp4", "metadata": { "filename": "2020-05-03_10-18-25.mp4", "filetype": "video\/mp4", "filesize": "95861731" }, "created_at": "Thu, 29 Aug 2024 15:15:26 GMT", "expires_at": "Fri, 30 Aug 2024 15:15:26 GMT", "upload_type": "normal" } }
Remote (prod env) :
{ "tus:server:5e7e4885-6962-4e0b-bdd5-16c666392e02": { "name": "2023-01-30_16-27-38.mp4", "size": 5112037, "offset": 0, "checksum": "", "location": "https:\/\/api-develop.website.fr\/private\/video\/upload\/5e7e4885-6962-4e0b-bdd5-16c666392e02", "file_path": "\/home\/web\/api\/develop\/var\/data\/in\/videos\/temp\/2023-01-30_16-27-38.mp4", "metadata": { "filename": "2023-01-30_16-27-38.mp4", "filetype": "video\/mp4", "filesize": "5112037" }, "created_at": "Thu, 29 Aug 2024 15:11:47 GMT", "expires_at": "Fri, 30 Aug 2024 15:11:47 GMT", "upload_type": "normal" } }
I tried to change the files permissions but without success.
I just followed the examples tha you provide.
Please help me :)
The text was updated successfully, but these errors were encountered: