parent
216a5f98eb
commit
2350650e26
|
@ -40,7 +40,7 @@ Vagrant.configure("2") do |config|
|
||||||
sudo DEBIAN_FRONTEND=noninteractive apt-get -y -m --force-yes install alsa
|
sudo DEBIAN_FRONTEND=noninteractive apt-get -y -m --force-yes install alsa
|
||||||
sudo usermod -a -G audio vagrant
|
sudo usermod -a -G audio vagrant
|
||||||
SHELL
|
SHELL
|
||||||
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIapv --web-port=9080"
|
config.vm.provision "shell", inline: "cd /vagrant; ./install -fIiapv --web-port=9080"
|
||||||
config.vm.provision "shell", path: "docs/scripts/install.sh"
|
config.vm.provision "shell", path: "docs/scripts/install.sh"
|
||||||
config.vm.provision "shell", path: "docs/scripts/serve.sh"
|
config.vm.provision "shell", path: "docs/scripts/serve.sh"
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,6 @@ The easiest way to check out LibreTime for yourself is to run a local instance i
|
||||||
cd libretime
|
cd libretime
|
||||||
vagrant up
|
vagrant up
|
||||||
|
|
||||||
If everything works out, you will find LibreTime on [port 9080](http://localhost:9080), icecast on [port 8080](http://localhost:8080) and the docs on [port 8888](http://localhost:8888).
|
If everything works out, you will find LibreTime on [port 9080](http://localhost:9080), icecast on [port 8000](http://localhost:8000) and the docs on [port 8888](http://localhost:8888).
|
||||||
|
|
||||||
Of course, this setup isn't appropriate for production use. For that, check out our [installation instructions](install.md).
|
Of course, this setup isn't appropriate for production use. For that, check out our [installation instructions](install.md).
|
||||||
|
|
4
install
4
install
|
@ -210,11 +210,11 @@ while :; do
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
--web-port)
|
--web-port)
|
||||||
echo 'ERROR: Pleas specify a port number.' >&2
|
echo 'ERROR: Please specify a port number.' >&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
--web-port=)
|
--web-port=)
|
||||||
echo 'ERROR: Pleas specify a port number.' >&2
|
echo 'ERROR: Please specify a port number.' >&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
--web-port=?*)
|
--web-port=?*)
|
||||||
|
|
Loading…
Reference in New Issue