Replies: 1 comment
-
Part 2: Using HTTPS and making the WebDAV server available to your other devices. There's many ways of doing this, but in this example we'll use Tailscale for easier networking and automatically setting up HTTPS. Continuing from the tutorial above:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A "File System Access API" integration is most likely going to happen in the future, which will allow you to play music from your device through just the browser. But in the meantime you can use WebDAV as an alternative. While most WebDAV software is quite outdated and unstable, there are modern equivalents such as https://github.com/hacdias/webdav which is what we're going to use in this short tutorial.
cd music_dir webdav --config name_of_your_yaml_file.yml
Host url:
http://localhost:PORT_NUMBER
(HTTPS is possible too)The port number will be shown in your terminal, or you can pass your own via a flag to the WebDAV server.
Use the username and password from config.
Beta Was this translation helpful? Give feedback.
All reactions