项目作者: AppleDevApp

项目描述 :
WebRtc With Audio And Video Conncet
高级语言: JavaScript
项目地址: git://github.com/AppleDevApp/WebRtc.git
创建时间: 2017-12-06T09:26:57Z
项目社区:https://github.com/AppleDevApp/WebRtc

开源协议:GNU General Public License v3.0

下载


WebRtc

WebRtc With Audio And Video Conncet

Warning:Must use with Chrome.

Install

Config the nginx

server {
listen 443 ssl;
server_name rtc.iu2us.com;

  1. ssl_certificate cert/rtc.iu2us.com.crt;
  2. ssl_certificate_key cert/rtc.iu2us.com.key;
  3. ssl_session_cache shared:SSL:1m;
  4. ssl_session_timeout 5m;
  5. ssl_ciphers HIGH:!aNULL:!MD5;
  6. ssl_prefer_server_ciphers on;
  7. location / {
  8. root /usr/local/var/www/WebRtc;
  9. index index.html index.htm;
  10. }
  11. location /uploadOtherCard {
  12. proxy_redirect off;
  13. proxy_set_header Host $host;
  14. proxy_set_header X-Real-IP $remote_addr;
  15. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  16. proxy_pass https://XXXXXXX.com;
  17. }
  18. }

You can find the cert in the dir.