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

    Anyone using Jitsi behind Nginx

    Scheduled Pinned Locked Moved Solved IT Discussion
    jitsinginx
    44 Posts 11 Posters 19.6k Views
    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.
    • dafyreD
      dafyre
      last edited by

      The only thing different in this one and the one that I had is that I don't have the

      proxy_redirect off;

      line.

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

        @dafyre said in Anyone using Jitsi behind Nginx:

        The only thing different in this one and the one that I had is that I don't have the

        proxy_redirect off;

        line.

        removed, no difference.

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

          Tried using keepalive or maybe proxy_connect_timeout?

          1 Reply Last reply Reply Quote 0
          • wirestyle22W
            wirestyle22
            last edited by wirestyle22

            Doesn't jitsi require the use of websockets? I think I used them when I tested it but I'm not 100%

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

              @wirestyle22 said in Anyone using Jitsi behind Nginx:

              Doesn't jitsi require the use of websockets? I think I used them when I tested it but I'm not 100%

              So nginx config in the location will need these?
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection $connection_upgrade;

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

                @JaredBusch Here's an article about Nginx Reverse Proxy for Websocket
                https://www.tutorialspoint.com/articles/how-to-configure-nginx-as-reverse-proxy-for-websocket

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

                  @black3dynamite said in Anyone using Jitsi behind Nginx:

                  @JaredBusch Here's an article about Nginx Reverse Proxy for Websocket
                  https://www.tutorialspoint.com/articles/how-to-configure-nginx-as-reverse-proxy-for-websocket

                  But the problem is a lack of documentation from Jitsi on how this all runs.

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

                    @black3dynamite said in Anyone using Jitsi behind Nginx:

                    @wirestyle22 said in Anyone using Jitsi behind Nginx:

                    Doesn't jitsi require the use of websockets? I think I used them when I tested it but I'm not 100%

                    So nginx config in the location will need these?
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection $connection_upgrade;

                    I did that last night. The result was my single connection stays stable but it all crashes as soon as a second person joins.

                        location / {
                            proxy_set_header X-Real-IP $remote_addr;
                            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                            proxy_set_header X-NginX-Proxy true;
                            proxy_pass https://10.254.0.104;
                            proxy_http_version 1.1;
                            proxy_set_header Upgrade $http_upgrade;
                            proxy_set_header Connection "upgrade";
                            proxy_set_header Host $host;
                        }
                    
                    1 Reply Last reply Reply Quote 0
                    • JaredBuschJ
                      JaredBusch
                      last edited by

                      I spun up a Debian 9 instance on Vultr (see my guide) and it works perfectly with multiple users connecting.

                      Of course it has no external proxy in front of it.

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

                        With the above setting, jsut myself can connect and it stays connected. Amost 2 hours until I manually disconnected.

                        0_1542388763312_49321ac2-f0d4-4c31-bab1-a5d69940e476-image.png

                        But everytime a second user connects, it drops immediately.

                        So annoying.

                        1 Reply Last reply Reply Quote 0
                        • wirestyle22W
                          wirestyle22
                          last edited by

                          It may be that mine was the same. Only ever tested it with one user.

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

                            Gods there is like no documentation on Jitsi.

                            Granted when installed on a VPS direct on the internet it just works. But that doens't help me.

                            1 Reply Last reply Reply Quote 1
                            • black3dynamiteB
                              black3dynamite
                              last edited by

                              I found this on github.
                              https://github.com/jitsi/jitsi-meet/blob/master/doc/example-config-files/jitsi.example.com.example

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

                                @black3dynamite said in Anyone using Jitsi behind Nginx:

                                I found this on github.
                                https://github.com/jitsi/jitsi-meet/blob/master/doc/example-config-files/jitsi.example.com.example

                                Something similar is in their "manual install" document.
                                https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md

                                But, that is showing localhost. When I try to use that config (changed to point the internal IP), I never successfully connect.

                                1 Reply Last reply Reply Quote 0
                                • dafyreD
                                  dafyre
                                  last edited by

                                  This might be overcomplicating things... but what about setting it up behind an nginx setup on the same server as jitsi, and then use your main nginx proxy to forward to the jitsi nginx?

                                  wirestyle22W 1 Reply Last reply Reply Quote 0
                                  • wirestyle22W
                                    wirestyle22 @dafyre
                                    last edited by wirestyle22

                                    @dafyre said in Anyone using Jitsi behind Nginx:

                                    This might be overcomplicating things... but what about setting it up behind an nginx setup on the same server as jitsi, and then use your main nginx proxy to forward to the jitsi nginx?

                                    Why would that work vs. the normal reverse proxy? If you have a problem and make two of the same problem it doesn't solve the issue I would think. I'm actually asking, not being a dick.

                                    dafyreD 1 Reply Last reply Reply Quote 0
                                    • M
                                      manxam
                                      last edited by

                                      @JaredBusch : I know this doesn't answer your question, but have you looked at NextCloud Talk at all? I don't know much about it but think it touts itself as a similar solution and the documentation is likely better.

                                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                                      • dafyreD
                                        dafyre @wirestyle22
                                        last edited by

                                        @wirestyle22 said in Anyone using Jitsi behind Nginx:

                                        @dafyre said in Anyone using Jitsi behind Nginx:

                                        This might be overcomplicating things... but what about setting it up behind an nginx setup on the same server as jitsi, and then use your main nginx proxy to forward to the jitsi nginx?

                                        Why would that work vs. the normal reverse proxy? If you have a problem and make two of the same problem it doesn't solve the issue I would think. I'm actually asking, not being a dick.

                                        I'm not sure that it would. I'm going to try it on mine in a bit. But sometimes having a proxy on a different machine can cause random problems for things that like to use a lot of open ports -- that's been my experience.

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

                                          @manxam said in Anyone using Jitsi behind Nginx:

                                          @JaredBusch : I know this doesn't answer your question, but have you looked at NextCloud Talk at all? I don't know much about it but think it touts itself as a similar solution and the documentation is likely better.

                                          It does not work as well.

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

                                            @JaredBusch said in Anyone using Jitsi behind Nginx:

                                            It does not work as well.

                                            'nuff said..

                                            Regarding proxying WS supporting multiple users, my default is this:

                                            # enables WS support
                                                proxy_http_version 1.1;
                                                proxy_set_header Upgrade $http_upgrade;
                                                proxy_set_header Connection "upgrade";
                                                proxy_set_header Host $host;
                                            

                                            and

                                            proxy_redirect off;
                                            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_max_temp_file_size 0;
                                            client_max_body_size 50m;
                                            client_body_buffer_size 256k;
                                            proxy_connect_timeout 180;
                                            proxy_send_timeout 180;
                                            proxy_read_timeout 90;
                                            proxy_buffer_size 16k;
                                            proxy_buffers 4 64k;
                                            proxy_busy_buffers_size 128k;
                                            proxy_temp_file_write_size 128k;
                                            

                                            Which appears to be what you used. I wonder what Jitsi is doing different that it breaks multiple connections via WS?

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