[jitsi-users] looking for apache configuration sample

Hi ther,
I would like to use jitsi-meet on a server where I already have apache running.
I can therefore not use nginx but must use apache.

I have google quiet a bit but can not really find information on how to set up an apache virtual host.

the best I found proposes the following:

NameVirtualHost 127.0.0.1:80

<VirtualHost 127.0.0.1:80>
   DocumentRoot "/Users/lyubomir/Sites/jitmeet"
   ServerName jitmeet.lyubomiinovsair

   <Directory "/Users/lyubomir/Sites/jitmeet/">
     Options Indexes MultiViews
     AllowOverride All
     Order allow,deny
     Allow from all
   </Directory>

   ProxyPass /http-bind http://127.0.0.1:7070/http-bind/
   ProxyPassReverse /http-bind http://127.0.0.1:7070/http-bind/

   RewriteEngine on
   RewriteRule ^/([a-zA-Z0-9]+)$ /index.html
</VirtualHost>

however, this toes not tell my what files and ports I need to use after a standart "apt-get install .." installation.

your help is much appreciated
robert