Page 1 of 1

Install Jitsi on a VestaCP server

Posted: Thu Apr 09, 2020 2:13 pm
by Spheerys
Hi,

I trying to install Jitsi, the opensource visioconference software, on a server with running VestaCP instance.
Unfortunately, I always have a "grey blank screen" when I go to the subdomain used for jitsi, and I wonder if there is not a specificity with VestaCP because I have installed with success Jitsi on several fresh installed Ubuntu server.

Is someone here have successful experience with the bundle Ubuntu 18.04LTS + VestaCP + Jitsi ?

Re: Install Jitsi on a VestaCP server

Posted: Thu Apr 09, 2020 4:09 pm
by Spheerys
The problem seams come from the module SSI (Server Side Includes).
It's need to be active to make Jitsi works.

I have added to the files /usr/local/vesta/data/templates/web/nginx/default.*tpl the bold line :
location / {
proxy_pass http://%ip%:%web_port%;
location ~* ^.+\.(%proxy_extentions%)$ {
ssi on;
root %docroot%;
access_log /var/log/%web_system%/domains/%domain%.log combined;
access_log /var/log/%web_system%/domains/%domain%.bytes bytes;
expires max;
try_files $uri @fallback;
}
}
Inside the Apache2 template, it was already good :
<Directory %sdocroot%>
AllowOverride All
SSLRequireSSL
Options +Includes -Indexes +ExecCGI
php_admin_value open_basedir %sdocroot%:%home%/%user%/tmp
php_admin_value upload_tmp_dir %home%/%user%/tmp
php_admin_value session.save_path %home%/%user%/tmp
</Directory>
After this, I ran a :

Code: Select all

v-rebuild-web-domains USER yes
But it's not working...

What did I miss ?

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 12, 2020 11:55 am
by skamasle
HI

In what port is runing jitsi ?

You may need modify proxy pass port to point it to jitsi

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 12, 2020 12:05 pm
by Spheerys
They are saying on the jitsi doc it's using theses ports : 8000, 8443 and the range 10000-20000
I already fave opened the firewall ports.

What should I do on the proxy pass port ?
Where can I change it ?

Re: Install Jitsi on a VestaCP server

Posted: Thu Apr 16, 2020 7:11 pm
by Cloud7
Hi, I'm trying the same. I installed on a fresh system jitsi first and it worked and then install --force vestaCP over it.
I thought then copying over the nginx conf would do the job, but it didn't.

How did you install it?

Re: Install Jitsi on a VestaCP server

Posted: Sat Apr 18, 2020 12:58 pm
by Spheerys
I did the opposite, without success for now.
I have a working VestaCP server with several hosted websites.
My plan is to add a new subdomain to host Jitsi

But I still get a blank grey screen during connection and I don't know why.

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 19, 2020 12:39 am
by soguor
Hi everyone!

I created a repository with templates and instructions to install Jitsi Meet on Ubuntu Server 18.04.

https://github.com/josemyg/vestacp-jitsitemplate

I await your comments.

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 19, 2020 2:37 am
by grayfolk
soguor wrote:
Sun Apr 19, 2020 12:39 am
Hi everyone!

I created a repository with templates and instructions to install Jitsi Meet on Ubuntu Server 18.04.

https://github.com/josemyg/vestacp-jitsitemplate

I await your comments.
viewtopic.php?p=81739#p81739

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 19, 2020 1:14 pm
by Spheerys
This tutorial works for me, thanks !

Re: Install Jitsi on a VestaCP server

Posted: Sun Apr 19, 2020 8:13 pm
by soguor
Spheerys wrote:
Sun Apr 19, 2020 1:14 pm
This tutorial works for me, thanks !
Thank you for contribute on readme file!