Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. MiroTalk
  3. MiroTalk Initial package feedback

MiroTalk Initial package feedback

Scheduled Pinned Locked Moved MiroTalk
21 Posts 8 Posters 2.3k Views 8 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • MiroTalkM MiroTalk

    @robi said in Customizable front page + auth:

    I'd also like to see an option to stop the telemetry and stats tracking by default. Didn't see an env var for thatI

    I have made statistics configurable in this commit. To implement this feature, add the following variables to your .env file:

    # Stats
    # Umami: https://github.com/umami-software/umami
    # We utilize our self-hosted Umami instance to track aggregated usage statistics for service improvement.
    
    STATS_ENABLED=true # Set to true or false
    STATS_SCR=YourUmamiEndpoint
    STATS_ID=YourInstanceId
    

    If you prefer not to share your statistics with us for service enhancement, set STATS_ENABLED=false.

    Enjoy using MiroTalk P2P v.1.2.77!

    robiR Offline
    robiR Offline
    robi
    wrote on last edited by
    #11

    @MiroTalk Thank you kindly for your quick feature add!

    You're amazing. Welcome to the Forum and Community. 🤗

    Conscious tech

    1 Reply Last reply
    2
    • nebulonN nebulon

      Hi and welcome here @MiroTalk
      Deviating the discussion here a bit, but first of all, you have built something really great. Quite impressive!

      Given how MiroTalk has separated the backends neatly, our current plan was to package them individually, since they seem to cover slightly different use-cases. We also plan on packaging the web call scheduler, which allows to integrate those backends as standalone apps on Cloudron.

      Initially I packaged them all at once, but that seemed a bit cumbersome, as on Cloudron it would require the user to allocate 5 (sub)domains for all to work, so we decided to split this, as we saw the main use-case to provide calls with say up to 10 people. Cloudron is not targeting audiences which require massive scaling, so that seemed fine. The initial package is the p2p flavor, since it works quite well and the SFU backend needs a port range, which is currently not supported by Cloudron. We hope to add this soon though if possible.

      If you have any thoughts on that, very welcome and much appreciated, as you are the expert on your app.

      robiR Offline
      robiR Offline
      robi
      wrote on last edited by
      #12

      @nebulon said in Customizable front page + auth:

      Initially I packaged them all at once, but that seemed a bit cumbersome, as on Cloudron it would require the user to allocate 5 (sub)domains for all to work, so we decided to split this, as we saw the main use-case to provide calls with say up to 10 people.

      Perhaps this can be resolved by using a single subdomain and multiple sub directories:
      mirotalk.dev/p2p
      mirotalk.dev/sfu
      mirotalk.dev/c2c

      Or a combination, like Cryptpad, main app (sub)domain, and a services subdomain which has subdirectories.

      Conscious tech

      girishG MiroTalkM 2 Replies Last reply
      1
      • robiR robi

        @nebulon said in Customizable front page + auth:

        Initially I packaged them all at once, but that seemed a bit cumbersome, as on Cloudron it would require the user to allocate 5 (sub)domains for all to work, so we decided to split this, as we saw the main use-case to provide calls with say up to 10 people.

        Perhaps this can be resolved by using a single subdomain and multiple sub directories:
        mirotalk.dev/p2p
        mirotalk.dev/sfu
        mirotalk.dev/c2c

        Or a combination, like Cryptpad, main app (sub)domain, and a services subdomain which has subdirectories.

        girishG Offline
        girishG Offline
        girish
        Staff
        wrote on last edited by
        #13

        @robi said in Initial package feedback:

        Or a combination, like Cryptpad, main app (sub)domain, and a services subdomain which has subdirectories.

        Cryptpad requires separate sandbox subdomain .

        robiR 1 Reply Last reply
        0
        • girishG girish

          @robi said in Initial package feedback:

          Or a combination, like Cryptpad, main app (sub)domain, and a services subdomain which has subdirectories.

          Cryptpad requires separate sandbox subdomain .

          robiR Offline
          robiR Offline
          robi
          wrote on last edited by
          #14

          @girish that is why I mentioned it, however not because of the requirement but because of the pattern.

          Conscious tech

          1 Reply Last reply
          1
          • robiR robi

            @nebulon said in Customizable front page + auth:

            Initially I packaged them all at once, but that seemed a bit cumbersome, as on Cloudron it would require the user to allocate 5 (sub)domains for all to work, so we decided to split this, as we saw the main use-case to provide calls with say up to 10 people.

            Perhaps this can be resolved by using a single subdomain and multiple sub directories:
            mirotalk.dev/p2p
            mirotalk.dev/sfu
            mirotalk.dev/c2c

            Or a combination, like Cryptpad, main app (sub)domain, and a services subdomain which has subdirectories.

            MiroTalkM Offline
            MiroTalkM Offline
            MiroTalk
            wrote on last edited by MiroTalk
            #15

            @robi @girish @nebulon

            I'm not tested it but to self-host MiroTalk WEB that includes all MiroTalk WebRTC projects using a SINGLE DOMAIN NAME, the solution can be something like this:

            1. On the same server, put all Mirotalk projects and install all the requirements it needs.
            2. Start all Mirotalk instances on the same server, they listen on localhost on different ports.
            3. In the MiroTalk WEB config, instead of pointing to different subdomains or domains, point to the Mirotalk instances running.
            "use-strict";
            
            module.exports = {
              //...
              MiroTalk: {
                P2P: {
                  Visible: true,
                  Home: "https://YOUR-DOMAIN/p2p",
                  Room: "https://YOUR-DOMAIN/p2p/newcall",
                  Join: "https://YOUR-DOMAIN/p2p/join/",
                  //...
                },
                SFU: {
                  Visible: true,
                  Home: "https://YOUR-DOMAIN/sfu",
                  Room: "https://YOUR-DOMAIN/sfu/newroom",
                  Join: "https://YOUR-DOMAIN/sfu/join/",
                  //...
                },
                C2C: {
                  Visible: true,
                  Home: "https://YOUR-DOMAIN/c2c",
                  Room: "https://YOUR-DOMAIN/c2c/?room=",
                  //...
                },
                BRO: {
                  Visible: true,
                  Home: "https://YOUR-DOMAIN/bro",
                  Broadcast: "https://YOUR-DOMAIN/bro/broadcast?id=",
                  Viewer: "https://YOUR-DOMAIN/bro/viewer?id=",
                  //...
                },
              },
              //...
            };
            
            1. Configure Nginx to route traffic based on paths to the corresponding Mirotalk instances.
            server {
                listen 443 ssl;
                server_name YOUR-DOMAIN;
            
                ssl_certificate /path/to/ssl_certificate.crt;
                ssl_certificate_key /path/to/ssl_certificate_key.key;
            
                location /p2p/ {
                    proxy_pass http://localhost:P2P-PORT/;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                    proxy_set_header X-Forwarded-Proto $scheme;
            
                    # Socket.IO Support
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                }
            
                location /sfu/ {
                    proxy_pass http://localhost:SFU-PORT/;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                    proxy_set_header X-Forwarded-Proto $scheme;
            
                    # Socket.IO Support
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                }
            
                location /c2c/ {
                    proxy_pass http://localhost:C2C-PORT/;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                    proxy_set_header X-Forwarded-Proto $scheme;
            
                    # Socket.IO Support
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                }
            
                location /bro/ {
                    proxy_pass http://localhost:BRO-PORT/;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr;
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                    proxy_set_header X-Forwarded-Proto $scheme;
            
                    # Socket.IO Support
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                }
            }
            

            Replace YOUR-DOMAIN, P2P-PORT, SFU-PORT, etc., with the actual domain name and port numbers used by your Mirotalk instances. Ensure that the SSL certificate paths are correctly specified.

            Now, when you access the specified Mirotalk URLs over HTTPS, Nginx will proxy the requests to the corresponding instances running on localhost. Adjust the configuration according to your specific setup and requirements.

            1 Reply Last reply
            3
            • nebulonN Offline
              nebulonN Offline
              nebulon
              Staff
              wrote on last edited by
              #16

              @MiroTalk that would be possible. Do you know if the backends itself generate relative URLs already?

              1 Reply Last reply
              1
              • MiroTalkM Offline
                MiroTalkM Offline
                MiroTalk
                wrote on last edited by
                #17

                No...,Please if someone want to test the provided configuration and inform me of its functionality. Happy coding! 😎

                1 Reply Last reply
                1
                • M Offline
                  M Offline
                  mave
                  wrote on last edited by
                  #18

                  Hi,
                  for me - using/hosting Bigbluebutton - the installation (and trying demo server) doesn't work: Freezing cameras, audio issues, Android (e/OS) not working. Maybe issues on turn/stun-server. But I can't see/understand how config and enable it inside a cloudron installation. The cloudron-turn-server seems not be used. What config file is used for this? (I also did not see this on MiroTalk-Docs ...)

                  BrutalBirdieB 1 Reply Last reply
                  0
                  • M mave

                    Hi,
                    for me - using/hosting Bigbluebutton - the installation (and trying demo server) doesn't work: Freezing cameras, audio issues, Android (e/OS) not working. Maybe issues on turn/stun-server. But I can't see/understand how config and enable it inside a cloudron installation. The cloudron-turn-server seems not be used. What config file is used for this? (I also did not see this on MiroTalk-Docs ...)

                    BrutalBirdieB Offline
                    BrutalBirdieB Offline
                    BrutalBirdie
                    Partner
                    wrote on last edited by
                    #19

                    @mave
                    I believe this post is misguided. MiroTalk has nothing to do with BigBlueButton.
                    Could you please describe a bit more in detail what are you doing?

                    Like my work? Consider donating a drink. Cheers!

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      mave
                      wrote on last edited by
                      #20

                      "MiroTalk has nothing to do with BigBlueButton."

                      Of course. I didn't mix here, only told my experiance with a working BBB-Installation. Curious, I tested MiroTalk on Cloudron. I got typical problems when a turn server was missing or ports failed: audio stops, cameras freezing. So first step for me is, checking the turn server thing, but don't know, if MiroTalk in Cloudron uses the iunternal turn server (seems not to be) and next step: how setting the config with an external tun server?

                      1 Reply Last reply
                      0
                      • nebulonN Offline
                        nebulonN Offline
                        nebulon
                        Staff
                        wrote on last edited by
                        #21

                        @mave can you open a new forum thread with your specific issues with MiroTalk so we don't mix topics. Also mention the MiroTalk flavor (p2p/SFU) which you refer to.

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • Bookmarks
                        • Search