Skip to content

Commit

Permalink
correcting configuration and github action
Browse files Browse the repository at this point in the history
- removing options from config.example.js file
- run github action only on master branch
- bump version to 3.5.3
  • Loading branch information
sd4v1d committed Mar 10, 2022
1 parent dc54dcd commit 26b81b0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop-deb.yml
Expand Up @@ -2,7 +2,7 @@ name: Debian package

on:
push:
branches: [ master, develop ]
branches: [ master ]
# pull_request:
# branches: [ develop ]

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
@@ -1,6 +1,6 @@
{
"name": "edumeet",
"version": "3.5.2",
"version": "3.5.3",
"private": true,
"description": "edumeet meeting service",
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
Expand Down
53 changes: 0 additions & 53 deletions server/config/config.example.js
Expand Up @@ -119,59 +119,6 @@ module.exports =
}
},
*/
// URI and key for requesting geoip-based TURN server closest to the client
turnAPIKey : 'examplekey',
turnAPIURI : 'https://example.com/api/turn',
turnAPIparams : {
'uri_schema' : 'turn',
'transport' : 'tcp',
'ip_ver' : 'ipv4',
'servercount' : '2'
},
turnAPITimeout : 2 * 1000,
// Backup turnservers if REST fails or is not configured
backupTurnServers : [
{
urls : [
'turn:turn.example.com:443?transport=tcp'
],
username : 'example',
credential : 'example'
}
],
// bittorrent tracker: please replace this if you want a more private file sharing service inside eduMEET
// have a look at https://github.com/webtorrent/bittorrent-tracker for setup your own tracker
fileTracker : 'wss://tracker.openwebtorrent.com',
// redis server options
redisOptions : {},
// session cookie secret
cookieSecret : 'T0P-S3cR3t_cook!e',
cookieName : 'edumeet.sid',
// if you use encrypted private key the set the passphrase
tls :
{
cert : `${__dirname}/../certs/mediasoup-demo.localhost.cert.pem`,
// passphrase: 'key_password'
key : `${__dirname}/../certs/mediasoup-demo.localhost.key.pem`
},
// listening Host or IP
// If omitted listens on every IP. ("0.0.0.0" and "::")
// listeningHost: 'localhost',
// Listening port for https server.
listeningPort : 443,
// Any http request is redirected to https.
// Listening port for http server.
listeningRedirectPort : 80,
// Listens only on http, only on listeningPort
// listeningRedirectPort disabled
// use case: loadbalancer backend
httpOnly : false,
// WebServer/Express trust proxy config for httpOnly mode
// You can find more info:
// - https://expressjs.com/en/guide/behind-proxies.html
// - https://www.npmjs.com/package/proxy-addr
// use case: loadbalancer backend
trustProxy : '',
// This logger class will have the log function
// called every time there is a room created or destroyed,
// or peer created or destroyed. This would then be able
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
@@ -1,6 +1,6 @@
{
"name": "edumeet-server",
"version": "3.5.2",
"version": "3.5.3",
"private": true,
"description": "edumeet server",
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
Expand Down

0 comments on commit 26b81b0

Please sign in to comment.