#1 Apache config for jitsi does not work
Closed by lcts. Opened by felfert.

In /etc/httpd/conf.d/jitsi-meet.conf, there is an old-style access rule which did not work here:

<Directory "/usr/share/jitsi-meet">
        Options Indexes MultiViews Includes FollowSymLinks
        AddOutputFilter Includes html
        AllowOverride all
        Order allow,deny
        Allow from all
</Directory>

Instead it should read:

<Directory "/usr/share/jitsi-meet">
        Options Indexes MultiViews Includes FollowSymLinks
        AddOutputFilter Includes html
        AllowOverride all
       Require all granted
</Directory></Directory>

Furthermore, to make the setup more secure, I suggest using AllowOverride none, as there are no .htaccess files below /usr/share/jitsi-meet.

Cheers
-Fritz


BTW: I would have forked and created a PR, however since you mix multiple unrelated packages in single project/repo, I find that pretty useless.

Suggestion: Create a separate project for the jitsi stuff.

Cheers
-Fritz

Thanks, I pushed a new release incorporating this, should be available via Copr.

Re separate repo: Yeah, this started out as a sort of collection of bits and pieces I installed on my machines, it clearly has outlived it's usefulness.

https://pagure.io/jitsi-rpm

Metadata Update from @lcts:
- Issue status updated to: Closed (was: Open)

Metadata