Blame view

trunk/conf/security.deny.publish.conf 385 字节
1
# security config for srs, allow play and deny publish.
2
# @see https://github.com/simple-rtmp-server/srs/issues/211#issuecomment-68507035
3 4 5 6 7 8 9 10 11 12 13
# @see full.conf for detail config.

listen              1935;
max_connections     1000;
vhost __defaultVhost__ {
    security {
        enabled         on;
        deny            publish     all;
        allow           play        all;
    }
}