k8s-openresty-streaming
is a full-fledged media streaming server with OpenResty and rtmp module for Kubernetes
- Support RTMP, HLS and MPEG-DASH streaming (thanks to nginx rtmp module)
- On the fly (and free) SSL registration and renewal inside OpenResty/nginx with Let's Encrypt (thanks to lua-resty-auto-ssl)
- Integrated GeoIP REST Api (thanks to Telize)
- Lightweight image based on openresty/openresty:alpine-fat flavor
- Git
- Docker, required for single server deployment only.
- Kubernetes (aka K8s), required for K8s cluster deployment.
SSH to your server and run
# Clone this repo
git clone https://github.com/duythongle/k8s-openresty-streaming.git
# Run image and mount config files for later editing
docker run -dit --name my_streaming_server \
-p 80:80 \
-p 443:443 \
-p 1935:1935 \
-v ~/k8s-openresty-streaming/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf \
thongld/k8s-openresty-streaming:alpine-fat \
openresty -g "daemon off;"
Then your browser should display OpenResty welcome home page at http://streaming_server_ip/ . Later on, just edit the mounted nginx.config file at ~/k8s-openresty-streaming/nginx.conf
for your needs and apply changes with command below
sudo docker exec my_streaming_server sh -c "openresty -t && openresty -s reload"
# Coming soon...
Then go to http://streaming_server_ip/ to view openresty welcome home page
- GeoIP REST API can be accessed at public location
/api/geoip
. Ex.: http://streaming_server_ip/api/geoip/location/8.8.4.4. Read more geoip api at Telize GeoIP REST API - Point your DNS to the server ip and see the magic of Auto SSL happens at https://streaming_server_domain
Note: Let's Encrypt has rate limits and the first https request for a domain may take a few seconds to complete
- nginx rtmp module has default application endpoint
my_live_stream
. You can push your live stream to the server via url: rtmp://streaming_server_ip_or_domain:1935/my_live_stream/my_stream_name and playback with hls url http://streaming_server_ip_or_domain/hls/my_stream_name
git clone https://github.com/duythongle/k8s-openresty-streaming.git
cd k8s-openresty-streaming
docker build -t openresty-streaming-server -f alpine-fat/Dockerfile .
# Then run the image
docker run -dit --name my_streaming_server \
-p 80:80 \
-p 443:443 \
-p 1935:1935 \
-v ~/k8s-openresty-streaming/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf \
openresty-streaming-server \
openresty -g "daemon off;"
- 12factor ready
- K8s ready
- Helm support
- Auto reload Nginx when .conf changes