ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Install Jitsi-Meet on Debian 9 minimal

    IT Discussion
    jitsi debian 9 jitsi meet debian debian 9.6
    7
    18
    12.9k
    Loading More Posts
    • 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.
    • JaredBuschJ
      JaredBusch
      last edited by

      Guide cleaned up and updated with a couple screenshots.

      1 Reply Last reply Reply Quote 0
      • JaredBuschJ
        JaredBusch @JaredBusch
        last edited by

        @JaredBusch said in Install Jitsi-Meet on Debian 9 minimal:

        ufw allow in 10000:20000/udp
        

        I assume there is a way to narrow this range down to not use the entire "standard" audio/video UDP range, but I have not yet looked. I was more worried about getting things running smoothly and tested out.

        1 Reply Last reply Reply Quote 0
        • A
          Alex Sage @JaredBusch
          last edited by

          @JaredBusch How has this been working for you?

          @JaredBusch said in Install Jitsi-Meet on Debian 9 minimal:

          sudo sh -c "echo 'deb https://download.jitsi.org unstable/' > /etc/apt/sources.list.d/jitsi-unstable.list"
          

          Any reason your using the unstable build?

          JaredBuschJ 1 Reply Last reply Reply Quote 0
          • JaredBuschJ
            JaredBusch @Alex Sage
            last edited by JaredBusch

            @aaronstuder said in Install Jitsi-Meet on Debian 9 minimal:

            @JaredBusch How has this been working for you?

            @JaredBusch said in Install Jitsi-Meet on Debian 9 minimal:

            sudo sh -c "echo 'deb https://download.jitsi.org unstable/' > /etc/apt/sources.list.d/jitsi-unstable.list"
            

            Any reason your using the unstable build?

            Because I was having problems and trying to track down issues.

            I missed updating that back to stable for my post.

            Post fixed.

            A 1 Reply Last reply Reply Quote 1
            • A
              Alex Sage @JaredBusch
              last edited by Alex Sage

              @JaredBusch Ah, gotcha.

              Also, you should post the full .conf

              server {
                      client_max_body_size 40M;
                      server_name jitsi.domain.com;
              
                  location / {
                      ssi on;
                      proxy_pass https://10.0.0.85/;
                      proxy_set_header X-Forwarded-For $remote_addr;
                      proxy_set_header Host $http_host;
                  }
                  # BOSH
                  location /http-bind {
                      proxy_pass http://10.0.0.85:5280/http-bind;
                      proxy_set_header X-Forwarded-For $remote_addr;
                      proxy_set_header Host $http_host;
                  }
              
                  # xmpp websockets
                  location /xmpp-websocket {
                      proxy_pass              http://10.0.0.85:5280/xmpp-websocket;
                      proxy_http_version      1.1;
                      proxy_set_header        Upgrade $http_upgrade;
                      proxy_set_header        Connection "upgrade";
                      proxy_set_header        Host $host;
                      tcp_nodelay             on;
                  }
              
              }
              
              JaredBuschJ 1 Reply Last reply Reply Quote 0
              • JaredBuschJ
                JaredBusch @Alex Sage
                last edited by

                @aaronstuder said in Install Jitsi-Meet on Debian 9 minimal:

                @JaredBusch Ah, gotcha.

                Also, you should post the full .conf

                server {
                        client_max_body_size 40M;
                        server_name jitsi.domain.com;
                
                    location / {
                        ssi on;
                        proxy_pass https://10.0.0.85/;
                        proxy_set_header X-Forwarded-For $remote_addr;
                        proxy_set_header Host $http_host;
                    }
                    # BOSH
                    location /http-bind {
                        proxy_pass http://10.0.0.85:5280/http-bind;
                        proxy_set_header X-Forwarded-For $remote_addr;
                        proxy_set_header Host $http_host;
                    }
                
                    # xmpp websockets
                    location /xmpp-websocket {
                        proxy_pass              http://10.0.0.85:5280/xmpp-websocket;
                        proxy_http_version      1.1;
                        proxy_set_header        Upgrade $http_upgrade;
                        proxy_set_header        Connection "upgrade";
                        proxy_set_header        Host $host;
                        tcp_nodelay             on;
                    }
                
                }
                

                That would be totally inapproriate. This is not a guide about setting up Nginx.

                1 Reply Last reply Reply Quote 1
                • A
                  Alex Sage @JaredBusch
                  last edited by

                  @JaredBusch said in Install Jitsi-Meet on Debian 9 minimal:

                  If you are running your Jitsi-Meet instance behind NAT, then you must port forward the following ports to your Jitsti server:
                  80/tcp, 443/tcp, 10000:20000/ucp

                  According to this:

                  https://github.com/jitsi/jitsi-meet/blob/master/doc/quick-install.md#advanced-configuration

                  You only need to open TCP/443 and UDP 10000

                  And, I don't think you even need 443 since we are using a reverse proxy?

                  JaredBuschJ 1 Reply Last reply Reply Quote 0
                  • JaredBuschJ
                    JaredBusch @Alex Sage
                    last edited by

                    @aaronstuder said in Install Jitsi-Meet on Debian 9 minimal:

                    @JaredBusch said in Install Jitsi-Meet on Debian 9 minimal:

                    If you are running your Jitsi-Meet instance behind NAT, then you must port forward the following ports to your Jitsti server:
                    80/tcp, 443/tcp, 10000:20000/ucp

                    According to this:

                    https://github.com/jitsi/jitsi-meet/blob/master/doc/quick-install.md#advanced-configuration

                    You only need to open TCP/443 and UDP 10000

                    And, I don't think you even need 443 since we are using a reverse proxy?

                    You are wrong.

                    A 1 Reply Last reply Reply Quote 0
                    • A
                      Alex Sage @JaredBusch
                      last edited by

                      @JaredBusch care to elaborate? It's working for me.

                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                      • JaredBuschJ
                        JaredBusch @Alex Sage
                        last edited by

                        @aaronstuder said in Install Jitsi-Meet on Debian 9 minimal:

                        @JaredBusch care to elaborate? It's working for me.

                        No, because it has all been posted. between here and my other thread.

                        1 Reply Last reply Reply Quote 0
                        • T
                          TheMachinistCNC
                          last edited by

                          I have been following you all over the web with your posting and you seem to know the most. I messed up and accidentally put in the wrong name at first and now after uninstalling jitsi and its components, I cannot get the screen that says "The hostname for the configuration" Might you know how I can do clear everything and get that screen to pop up in the install. greatly appreciated!

                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @TheMachinistCNC
                            last edited by

                            @TheMachinistCNC said in Install Jitsi-Meet on Debian 9 minimal:

                            I have been following you all over the web with your posting and you seem to know the most. I messed up and accidentally put in the wrong name at first and now after uninstalling jitsi and its components, I cannot get the screen that says "The hostname for the configuration" Might you know how I can do clear everything and get that screen to pop up in the install. greatly appreciated!

                            Easiest thing is to start over if you are doing a clean install as that will guarantee that you clean everything out. I've installed this recently, though, and don't know the screen that you are mentioning. Which setting is it that you are trying to set?

                            black3dynamiteB 1 Reply Last reply Reply Quote 0
                            • black3dynamiteB
                              black3dynamite @scottalanmiller
                              last edited by

                              @scottalanmiller said in Install Jitsi-Meet on Debian 9 minimal:

                              @TheMachinistCNC said in Install Jitsi-Meet on Debian 9 minimal:

                              I have been following you all over the web with your posting and you seem to know the most. I messed up and accidentally put in the wrong name at first and now after uninstalling jitsi and its components, I cannot get the screen that says "The hostname for the configuration" Might you know how I can do clear everything and get that screen to pop up in the install. greatly appreciated!

                              Easiest thing is to start over if you are doing a clean install as that will guarantee that you clean everything out. I've installed this recently, though, and don't know the screen that you are mentioning. Which setting is it that you are trying to set?

                              When it asked for a Hostname/FQDN during the installation.

                              1 Reply Last reply Reply Quote 0
                              • M
                                mattbagan
                                last edited by

                                Works on Debian 10.

                                1 Reply Last reply Reply Quote 0
                                • 1 / 1
                                • First post
                                  Last post