Jitsi und ISPConfig

drakul

Member
Hallo,

ich habe einen Jitsi Server auf meinem Server laufen (Debian 10), dieser war erreichbar bis ich ein Let's Encrypt Zertifikat über ISPConfig angelegt habe (Subdomain vhost).

Jetzt erscheint die Standard ISPConfig Website beim Aufruf der subdomain.

Was muss ich einstellen damit ich wieder auf den Jitsi Server zugreifen kann?

vielen Dank und frohe Ostern! :)

LG

Edit:

Ich musste noch die Apache Direktiven anpassen:

Code:
  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/sub.domain.tld-config.js"
  <Location /config.js>
    Require all granted
  </Location>

  Alias "/external_api.js" "/usr/share/jitsi-meet/libs/external_api.min.js"
  <Location /external_api.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

Allerdings bekomme ich noch ein paar Erros:
/http-bind?room=neu 503 (Service Unavailable) etc.

Wenn ich was finde, poste ich es hier.

Okay sehr einfache Lösung:

service jicofo restart

:)
 
Zuletzt bearbeitet:

Werbung

Top