Document WebDAV setup for bypassing entirely the need to upload #4
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
See description in https://video.benetou.fr/w/rHZTnX5MnHdWvWTPa2Rsw4
The principle being that experimentation
q4_webdav_browserallows for specifying a WebDAV server. This means if the user setup their own WebDAV server, including locally, they can access their files directly.This can be facilitated with e.g. CopyParty (which supports WebDAV and is a single file software, no installation required) but can be done in plenty of ways, e.g. WebDAV as Express middleware, Docker instance behind nginx, etc.
PS: some setups are problematic, e.g. NextCloud WebDAV instances does not allow CORS, cf https://github.com/nextcloud/server/issues/3131
Note that if you want to share the content with the headset, the URL must be accessible to it. If it's another computer localhost or 127.0.0.1 (local loopback) will not work. It must be something like 192.168.0.42
If you do want to share with the outside World (understand the risk, if your directory is read/write then others might be able to overwrite your files) you can setup a tunnel. A convenient way to do so is to use
ngroke.g.ngrok http 3923will provide you with a HTTPS URL you can then use as public WebDAV endpoint.