Fix address error generated by mkdocs - mk2
Fix "does not appear to be an IPv4 or IPv6 address"
This commit is contained in:
parent
dcdf4eacdc
commit
b7a52d1761
|
@ -4,7 +4,7 @@ Mobile friendly player web interface for [OwnTone](http://owntone.github.io/ownt
|
||||||
with [Vue.js](https://vuejs.org), [Bulma](http://bulma.io).
|
with [Vue.js](https://vuejs.org), [Bulma](http://bulma.io).
|
||||||
|
|
||||||
You can find the web interface at [http://owntone.local:3689](http://owntone.local:3689)
|
You can find the web interface at [http://owntone.local:3689](http://owntone.local:3689)
|
||||||
or alternatively at [http://[your_server_address_here]:3689](http://[your_server_address_here]:3689).
|
or alternatively at http://SERVER_ADDRESS:3689.
|
||||||
|
|
||||||
Use the web interface to control playback, trigger manual library rescans, pair
|
Use the web interface to control playback, trigger manual library rescans, pair
|
||||||
with remotes, select speakers, authenticate with Spotify, etc.
|
with remotes, select speakers, authenticate with Spotify, etc.
|
||||||
|
@ -33,7 +33,7 @@ with remotes, select speakers, authenticate with Spotify, etc.
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
You can find OwnTone's web interface at [http://owntone.local:3689](http://owntone.local:3689)
|
You can find OwnTone's web interface at [http://owntone.local:3689](http://owntone.local:3689)
|
||||||
or alternatively at [http://[your_server_address_here]:3689](http://[your_server_address_here]:3689).
|
or alternatively at http://SERVER_ADDRESS:3689.
|
||||||
|
|
||||||
|
|
||||||
## Build Setup
|
## Build Setup
|
||||||
|
|
|
@ -6,7 +6,7 @@ After installation (see [Installation](installation.md)) do the following:
|
||||||
needs
|
needs
|
||||||
2. Start or restart the server (usually `/etc/init.d/owntone restart`)
|
2. Start or restart the server (usually `/etc/init.d/owntone restart`)
|
||||||
3. Go to the web interface [http://owntone.local:3689](http://owntone.local:3689),
|
3. Go to the web interface [http://owntone.local:3689](http://owntone.local:3689),
|
||||||
or, if that won't work, to http://YOUR_SERVER_ADDRESS_HERE:3689
|
or, if that won't work, to http://SERVER_ADDRESS:3689
|
||||||
4. Wait for the library scan to complete
|
4. Wait for the library scan to complete
|
||||||
5. If you will be using a remote, e.g. Apple Remote: Start the remote, go to
|
5. If you will be using a remote, e.g. Apple Remote: Start the remote, go to
|
||||||
Settings, Add Library
|
Settings, Add Library
|
||||||
|
|
|
@ -23,7 +23,7 @@ have to trigger updates manually. You can for instance set up a cron job that
|
||||||
runs `/usr/bin/curl http://localhost:3689/api/update`
|
runs `/usr/bin/curl http://localhost:3689/api/update`
|
||||||
|
|
||||||
To logout and remove Spotify tracks + credentials make a request to
|
To logout and remove Spotify tracks + credentials make a request to
|
||||||
[http://[your_server_address_here]:3689/api/spotify-logout](http://[your_server_address_here]:3689/api/spotify-logout).
|
[http://owntone.local:3689/api/spotify-logout](http://owntone.local:3689/api/spotify-logout).
|
||||||
|
|
||||||
Limitations:
|
Limitations:
|
||||||
You will not be able to do any playlist management through OwnTone - use
|
You will not be able to do any playlist management through OwnTone - use
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
You can listen to audio being played by OwnTone by opening this network
|
You can listen to audio being played by OwnTone by opening this network
|
||||||
stream address in pretty much any music player:
|
stream address in pretty much any music player:
|
||||||
|
|
||||||
http://[your hostname/ip address]:3689/stream.mp3
|
[http://owntone.local:3689/stream.mp3](http://owntone.local:3689/stream.mp3)
|
||||||
|
or
|
||||||
|
http://SERVER_ADDRESS:3689/stream.mp3
|
||||||
|
|
||||||
This is currently the only way of listening to your audio on iOS devices, since
|
This is currently the only way of listening to your audio on iOS devices, since
|
||||||
Apple does not allow AirPlay receiver apps, and because Apple Home Sharing
|
Apple does not allow AirPlay receiver apps, and because Apple Home Sharing
|
||||||
|
|
Loading…
Reference in New Issue