diff --git a/README.md b/README.md index 6dfd3f3..cfe9c0f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,23 @@ # nginx-live + + + + + + + + + + + + +
+ :warning: Notice +
+ The docker image is now hosted as git.bluemedia.dev/bluemedia/nginx-live. The old registry name will continue to point to the current image for now, but may stop working at some point in the future. +
+ nginx-live is a simple, lightweight, self-hosted video streaming service in a Docker container. It allows you to securely stream video and audio from encoders such as OBS via RTMP or RTMPS. The stream is then converted to the HLS format so that it can be viewed by a larger number of viewers in their favorite browser. @@ -10,7 +28,7 @@ It allows you to securely stream video and audio from encoders such as OBS via R If you want to try nginx-live, or test a configuration change, you can start the container without any environment variables. In this case the ingest is done unencrypted via RTMP. The necessary stream key is generated randomly and printed in the Docker log during the first start. ```shell -docker run -d --name streaming -p 8080:8080 -p 1935:1935 repo.bluemedia.dev/bluemedia/nginx-live +docker run -d --name streaming -p 8080:8080 -p 1935:1935 git.bluemedia.dev/bluemedia/nginx-live ``` After launch, the web player should be available at `http://:8080/`. @@ -25,7 +43,7 @@ docker run -d --name streaming -p 8080:8080 -p 1935:1935 \ -v /path/to/certs:/cert:ro \ -e TLS_CERT=fullchain.cer \ -e TLS_KEY=private.key \ -repo.bluemedia.dev/bluemedia/nginx-live +git.bluemedia.dev/bluemedia/nginx-live ``` You will now need to set the server url in your streaming software in the following format: `rtmps://:/live`. It is important that you specify the RTMP port. @@ -51,7 +69,7 @@ If you want to make the web player and the HLS files available via HTTPS, you ca - `frontend/` All frontend related files. These will be copied to the web root of nginx. ## Automated image builds -The Docker image `repo.bluemedia.dev/bluemedia/nginx-live` is built an pushed every two days by a Jenkins instance. Builds are based on the current main branch of this repository. +The Docker image `git.bluemedia.dev/bluemedia/nginx-live` is built an pushed every two days by a Jenkins instance. Builds are based on the current main branch of this repository. ## Contribution Guidelines