Setup Jitsi Meet on Apache2

See original GitHub issue

I followed Quick Install Jitsi Meet. When I open the browser and connect to the server all I get is the apache2 default index.html while I want to get to jitsi web interface.

chandrantwins said:

you have to change server root path… inside /etc/apache2/sites-enabled/yourdomain.conf

What do i have to change? Please help me check my file /etc/apache2/sites-enabled/yourdomain.conf. Did you mean server root path = DocumentRoot?

<VirtualHost *:80>
    ServerName jitsimeet
    Redirect permanent / https://jitsimeet
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</VirtualHost>
 
<VirtualHost *:443>
 
  ServerName jitsimeet
 
  SSLProtocol TLSv1 TLSv1.1 TLSv1.2
  SSLEngine on
  SSLProxyEngine on
  SSLCertificateFile /etc/jitsi/meet/jitsimeet.crt
  SSLCertificateKeyFile /etc/jitsi/meet/jitsimeet.key
  SSLCipherSuite "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA256:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EDH+aRSA+AESGCM:EDH+aRSA+SHA256:EDH+aRSA:EECDH:!aNULL:!eNULL:!MEDIUM:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS:!RC4:!SEED"
  SSLHonorCipherOrder on
  Header set Strict-Transport-Security "max-age=31536000"
 
  DocumentRoot "/usr/share/jitsi-meet"
  <Directory "/usr/share/jitsi-meet">
    Options Indexes MultiViews Includes FollowSymLinks
    AddOutputFilter Includes html
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>
 
  ErrorDocument 404 /static/404.html
 
  Alias "/config.js" "/etc/jitsi/meet/jitsimeet-config.js"
  <Location /config.js>
    Require all granted
  </Location>
 
  ProxyPreserveHost on
  ProxyPass /http-bind http://localhost:5280/http-bind/
  ProxyPassReverse /http-bind http://localhost:5280/http-bind/
 
  RewriteEngine on
  RewriteRule ^/([a-zA-Z0-9]+)$ /index.html
</VirtualHost>

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:20 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
nphucuongcommented, Apr 4, 2018

Yes, i know it. I saw that tutorial before chandrantwins had recommended but now i really got stuck. damencho 🥇 can you show me a better solution? I don’t know why other people can install jitsi easily. Maybe God is challenging me 😢

0reactions
404Prachicommented, Jul 23, 2020

I am facing same issue. I see apache2 index page not jitsi home page …😦

Read more comments on GitHub >

github_iconTop Results From Across the Web

Quck HowTo for jitsi-meet on ubuntu 18.04 with apache and ...
Hi Coimmunity! i made a quick Howto or jitsi-meet on ubuntu 18.04 with apache and Shibboleth: https://github.com/flyinghuman/jitsi-meet/wiki ...
Read more >
How To Install Jitsi Meet on Ubuntu 20.04 - DigitalOcean
Step 3 — Installing Jitsi Meet ... In this step, you will add the Jitsi stable repository to your server and then install...
Read more >
Self-Hosting Guide - Debian/Ubuntu server | Jitsi Meet
Self-Hosting Guide - Debian/Ubuntu server. Follow these steps for a quick Jitsi-Meet installation on a Debian-based GNU/Linux system.
Read more >
Make Jitsi-Meet work with apache on a sub URL
Install Jitsi in subdir of Apache in local network (ubuntu 18.04) · 1. Install jitsi with Basic Jitsi Meet install (https://github.com/jitsi/ ...
Read more >
How to Install Jitsi Meet on Ubuntu Server - InMotion Hosting
Create a Meeting · After installing Jitsi Meet, visit your Jitsi hostname in your browser to view your new private conference application. ·...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found