我想知道像http://www.inspectlet.com/这样的服务如何存储视频会话,从外观上看,我认为这不是webRTC的实现。我能够弄清楚的是,有一个活跃的Express套接字正在进行通信,但是在那种情况下,他们将必须存储页面并跟踪DOM中的所有事件。Justed希望确认这是他们遵循的方法。
问候,Muaaz Rafi
所以我使用以下设置为网站创建一个反向代理,如下所示.
server {
listen 80;
server_name mysite.com;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
root /home/ubuntu/p3;
location / {
proxy_pass https://mysiter.com/;
proxy_redirect https://mysiter.com/ $host;
proxy_set_header Accept-Encoding "";
}
}
Run Code Online (Sandbox Code Playgroud)
但得到BAD GATE WAY 502错误,以下是日志.
2016/08/13 09:42:28 [error] 26809#0: *60 SSL_do_handshake() failed (SSL: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error) while SSL handshaking to upstream, client: 103.255.5.68, server: mysite.com, request: "GET / HTTP/1.1", upstream: "https://105.27.188.213:443/", host: "mysite.com"
2016/08/13 09:42:28 [error] 26809#0: *60 SSL_do_handshake() failed (SSL: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error) while SSL handshaking to upstream, client: 103.255.5.68, …Run Code Online (Sandbox Code Playgroud)