Compare commits

...

2 Commits

Author SHA1 Message Date
5022d88b1d LINXD-2222: Update 2022-09-19 16:51:15 +03:00
52b922825f LINXD-2222: Update 2022-09-19 16:48:46 +03:00
2 changed files with 5 additions and 5 deletions

2
.env
View File

@ -1,3 +1,3 @@
PORT=3001
PORT=3000
IP=0.0.0.0 # Listening IPv4 or IPv6.
ANNOUNCED_IP=185.8.154.190 # Announced IPv4 or IPv6 (useful when running mediasoup behind NAT with private IP).

8
app.js
View File

@ -7,9 +7,9 @@ import 'dotenv/config'
/* Please follow mediasoup installation requirements */
/* https://mediasoup.org/documentation/v3/mediasoup/installation/ */
// import express from 'express'
// const app = express()
const app = express()
// const app = require('express')();
// import https from 'httpolyglot'
import https from 'httpolyglot'
import fs from 'fs'
import path from 'path'
const __dirname = path.resolve()
@ -17,10 +17,10 @@ const __dirname = path.resolve()
// import Server from 'socket.io'
import mediasoup from 'mediasoup'
import * as express from "express";
import * as https from "http";
// import * as https from "http";
import Server from "socket.io";
// import middleware from 'socketio-wildcard'
const app = express.default();
// const app = express.default();
let worker
/**