diff --git a/Setting-up-an-HLS-Broadcast-server-with-NGINX.md b/Setting-up-an-HLS-Broadcast-server-with-NGINX.md index 04ca290..7bc8c40 100644 --- a/Setting-up-an-HLS-Broadcast-server-with-NGINX.md +++ b/Setting-up-an-HLS-Broadcast-server-with-NGINX.md @@ -10,7 +10,7 @@ The first part of this server config handles ingesting the raw RTMP datastream and converting to a series of files which can be fetched via web request, as the HLS protocol perscribes. 1. Edit open `/etc/nginx/nginx.conf` 2. Add the following block to your `nginx.conf`: - +

 rtmp {
 	server {
 		listen 1935;
@@ -32,7 +32,7 @@ rtmp {
 		}
 	}
 }
-
+
## Web Server Configuration This part of the configuration handles setting up the web server which serves the files that make up the HLS stream.