From f6fc31db66e7b810fdc5091c1ba6f1ac0aea9280 Mon Sep 17 00:00:00 2001 From: winlin Date: Sat, 5 Oct 2019 17:02:25 +0800 Subject: [PATCH] Add config files for go-oryx --- trunk/conf/go-oryx-edge.conf | 15 +++++++++++++++ trunk/conf/go-oryx-edge2.conf | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 trunk/conf/go-oryx-edge.conf create mode 100644 trunk/conf/go-oryx-edge2.conf diff --git a/trunk/conf/go-oryx-edge.conf b/trunk/conf/go-oryx-edge.conf new file mode 100644 index 000000000..8b07031e0 --- /dev/null +++ b/trunk/conf/go-oryx-edge.conf @@ -0,0 +1,15 @@ +# the config for srs origin-edge cluster +# @see https://github.com/ossrs/srs/wiki/v1_CN_Edge +# @see full.conf for detail config. + +listen 19351; +max_connections 1000; +pid objs/edge1.pid; +daemon off; +srs_log_tank console; +vhost __defaultVhost__ { + cluster { + mode remote; + origin 127.0.0.1:19350; + } +} diff --git a/trunk/conf/go-oryx-edge2.conf b/trunk/conf/go-oryx-edge2.conf new file mode 100644 index 000000000..74ea54f01 --- /dev/null +++ b/trunk/conf/go-oryx-edge2.conf @@ -0,0 +1,15 @@ +# the config for srs origin-edge cluster +# @see https://github.com/ossrs/srs/wiki/v1_CN_Edge +# @see full.conf for detail config. + +listen 19352; +max_connections 1000; +pid objs/edge2.pid; +daemon off; +srs_log_tank console; +vhost __defaultVhost__ { + cluster { + mode remote; + origin 127.0.0.1:19350; + } +}