我正在嘗試使用Nginx-rtmp進行流式傳輸服務。配置文件是通過http進行RTMP流式傳輸
rtmp {
server {
listen 1935;
chunk_size 4000;
# video on demand for flv files
application vod {
play /var/flvs;
}
# video on demand for mp4 files
application vod2 {
play /var/mp4s;
}
}
}
我希望流服務通過http不rtmp。最終,我們希望客戶端使用https連接到代理服務器,然後代理服務器使用rtmp與流媒體服務器通話。我現在正在使用HTTP進行測試。所以我成立了一個HAProxy的使用以下配置:
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
#tune.ssl.default-dh-param 2048
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# Default ciphers to use on SSL-enabled listening sockets.
# For more information, see ciphers(1SSL). This list is from:
# https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
ssl-default-bind-options no-sslv3
defaults
log global
mode tcp
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
frontend rtmp-80
bind *:80
default_backend rtmp-over-http
backend rtmp-over-http
server media01 127.0.0.1:1935 check maxconn 200
我可以訪問使用RTMP的URI進行流媒體業務:// the_ip:1935/VOD2/gua.mp4在VLC播放器。 但無論我嘗試過什麼,當我嘗試使用http://the_ip:80/vod2/gua.mp4訪問流時,它都不起作用。
這甚至可能嗎?
非常感謝!
謝謝!任何關於可用於rtmp流式傳輸的工具/設置的建議? – Ryan
那麼,你可以嘗試尋找RTMPT,它基本上是通過HTTP隧道傳輸的。不過,我不知道如何使用RTMPT加密。 –