RTMPS 和自签名证书
RTMPS and self signed certificate
我正在通过 videojs 开发 RTMPS 直播。 (Flash 播放器)
访问网域时播放具有public证书的RTMPS服务器。
ex) rtmps://www.example.com:5555/live/ (成功)
但是,
我想使用带有自签名证书和 IP 地址的 RTMPS 服务器。
(IP 不断变化。)
ex) rtmps://123.456.78.9:5555/live/ (失败)
我该怎么办?
根据this、"To use self-signed certificates you have to accept the certificate on the client, inserting it into the Trusted Root Certification Authorities store."
但是,创建动态 DNS 主机名可能是更好的解决方案。许多服务都是免费提供的,而且过程很简单; Google 动态 DNS 主机名。
完成后,您应该能够使用公认的服务创建证书。 LetsEncrypt 免费提供证书。请参阅 this note 将动态提供程序与 LetsEncrypt 结合使用。
我正在通过 videojs 开发 RTMPS 直播。 (Flash 播放器)
访问网域时播放具有public证书的RTMPS服务器。
ex) rtmps://www.example.com:5555/live/ (成功)
但是,
我想使用带有自签名证书和 IP 地址的 RTMPS 服务器。 (IP 不断变化。)
ex) rtmps://123.456.78.9:5555/live/ (失败)
我该怎么办?
根据this、"To use self-signed certificates you have to accept the certificate on the client, inserting it into the Trusted Root Certification Authorities store."
但是,创建动态 DNS 主机名可能是更好的解决方案。许多服务都是免费提供的,而且过程很简单; Google 动态 DNS 主机名。
完成后,您应该能够使用公认的服务创建证书。 LetsEncrypt 免费提供证书。请参阅 this note 将动态提供程序与 LetsEncrypt 结合使用。