-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add wiki and conf for token traverse auth
- Loading branch information
Showing
4 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# the config for srs origin-edge cluster | ||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/Edge | ||
# @see full.conf for detail config. | ||
|
||
listen 1935; | ||
pid objs/edge.pid; | ||
srs_log_file ./objs/edge.log; | ||
vhost __defaultVhost__ { | ||
mode remote; | ||
origin 127.0.0.1:19350; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# the config for srs for token traverse authentication | ||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/DRM | ||
# @see full.conf for detail config. | ||
|
||
listen 1935; | ||
vhost __defaultVhost__ { | ||
mode remote; | ||
origin 127.0.0.1:19350; | ||
token_traverse on; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# the config for srs origin-edge cluster | ||
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/Edge | ||
# @see full.conf for detail config. | ||
|
||
listen 19350; | ||
pid objs/origin.pid; | ||
srs_log_file ./objs/origin.log; | ||
vhost __defaultVhost__ { | ||
} |