webrtc audio/video/text chat
2026-01-21 00:23:43 +01:00
etc add nginx config, update README 2014-04-16 14:01:43 +02:00
rooms log unkown actions 2015-10-03 20:29:24 +02:00
static resize fixes 2026-01-21 00:23:43 +01:00
.gitignore fix wsHost overwrite for roulette 2013-08-01 12:20:57 +02:00
chatb.go change default config location, dont fail if config does not exist 2015-08-26 02:50:45 +02:00
LICENSE add GPL3 LICENSE 2013-10-30 08:54:01 +01:00
README.md update docs 2020-04-11 12:21:45 +02:00

chatb.org - webrtc audio/video/text chat

  • run "go build" to build backend

  • to deploy behind nginx look at etc/nginx/chatb.org

  • optional config file looks like this:

      {
          "wsHost": "wss://domain:port",
          "iceServers": [
              {
                  "urls": ["stun:<ip>:<port>"]
              },
              {
                  "username": "username",
                  "credential": "password",
                  "urls": [
                      "turn:<ip>:<port>?transport=udp",
                      "turn:<ip>:<port>?transport=tcp"
                  ]
              }
          ]
      }