使用nodejs为WebRTC+freeSWITCH搭建https服务

Node.js使用 v6.11.0 x64 LTS 版本,下载地址:https://nodejs.org/dist/v6.11.0/node-v6.11.0-x64.msi。

对应的 npm 版本 3.10.10 。

下载了 msi 安装包,一路 next 即可。

服务器我们用node-static。

先用 npm init 创建一个package.json,然后添加依赖 node-static ,package.json 如下:

{
  "name": "freeswitch",
  "version": "1.0.0",
  "description": "test freeswitch for webrtc",
  "main": "server.js",
  "dependencies": {
    "node-static": "^0.7.9"
  },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node server.js"
  },
  "keywords": [
    "webrtc"
  ],
  "author": "foruok",
  "license": "ISC"
}

执行:

npm install

然后创建 server.js 文件,内容如下:

var fs = require("fs");
var static = require('node-static');

var file = new static.Server('./public');

const options = {
  key: fs.readFileSync('D:/projects/webconference/freeswitch/privatekey.pem'),
  cert: fs.readFileSync('D:/projects/webconference/freeswitch/certification.pem')
};

require('https').createServer(options, function (request, response) {
    request.addListener('end', function () {
        file.serve(request, response);
    }).resume();
}).listen(8080);

随便在 public 目录下放个什么 html 文件,比如 test.html 。

用 npm start 启动服务,可以在 Chrome 浏览器内输入地址 https://192.168.40.96:8080/test.html测试一下。

如果能看到,说明服务正常。

关于 SSL 证书的生成,参见:Nodejs创建https服务器(Windows 7)。


相关阅读:

  • freeSWITCH + WebRTC 音视频会议
  • 使用Zoiper与freeSWITCH开视频会议
  • Windows下编译freeSWITCH
  • 使用freeSWITCH和Yate进行VoIP通话

你可能感兴趣的:(多媒体)