PLAYBACK
FOLDER
/
Set a server below to browse.
SERVER
Saved on AtlasCube and used by its Network Music screen.
Also editable in Settings → Network.
Server not working? Show the nginx config
The device does not read HTML index pages — it needs the directory
listing as JSON. That is what autoindex_format json
does. Plain http:// only — https:// is
refused and redirects are not followed, so a host that forces
HTTPS will not work. Any reachable server will; with no TLS and no
password, one on your own network is the easy choice.
server {
listen 8090;
server_name _;
root /srv/music;
charset utf-8;
sendfile on;
location / {
autoindex on;
autoindex_format json;
}
}
charset utf-8 matters for track names outside ASCII.
Enter the address with the trailing slash:
http://music-server:8090/
Longer walkthrough, same config: atlascube.net/music