Skip to content

Commit

Permalink
Updating nginx configs and demo player location.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfg committed Feb 17, 2021
1 parent 97128e7 commit 22c3bc9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -63,7 +63,7 @@ volumes:

### Watch Stream
* Load up the example hls.js player in your browser:
http://localhost:8080/player/?url=http://localhost:8080/live/hello.m3u8
http://localhost:8080/player.html?url=http://localhost:8080/live/hello.m3u8

* Or in Safari, VLC or any HLS player, open:
```
Expand Down
11 changes: 7 additions & 4 deletions nginx-cuda.conf
Expand Up @@ -42,12 +42,15 @@ rtmp {

http {
root /www/static;
sendfile off;
tcp_nopush on;
access_log /dev/stdout combined;

ssl_ciphers HIGH:!aNULL:!MD5;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# Uncomment these lines to enable SSL.
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_session_cache shared:SSL:10m;
# ssl_session_timeout 10m;

server {
listen ${HTTP_PORT};
Expand Down
11 changes: 7 additions & 4 deletions nginx.conf
Expand Up @@ -42,12 +42,15 @@ rtmp {

http {
root /www/static;
sendfile off;
tcp_nopush on;
access_log /dev/stdout combined;

ssl_ciphers HIGH:!aNULL:!MD5;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# Uncomment these lines to enable SSL.
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
# ssl_session_cache shared:SSL:10m;
# ssl_session_timeout 10m;

server {
listen ${HTTP_PORT};
Expand Down
File renamed without changes.

0 comments on commit 22c3bc9

Please sign in to comment.