This commit is contained in:
root 2022-01-23 21:49:01 +01:00
commit 363a876c22
88 changed files with 783 additions and 0 deletions

View file

@ -0,0 +1 @@
/etc/element-web/config.json

View file

@ -0,0 +1,7 @@
Package: element-web
Version: %VERSION%
Section: base
Priority: optional
Architecture: all
Maintainer: Thomas Legay <thomas@syngate.fr>
Description: element-web

View file

@ -0,0 +1,26 @@
<VirtualHost *:80>
ServerName first.domaine.com
ServerAlias second.domaine.com
ServerAlias third.domaine.com
DocumentRoot /usr/lib/element-web
Protocols h2c http/1.1
#default config ie first and third domaine
Alias /config.json /etc/element-web/config.json
#config for second domaine
Alias /config.second.domaine.com.json /etc/element-web/config.second.domaine.com.json
<directory /usr/lib/element-web>
Options none
AllowOverride None
Require all granted
</directory>
<directory /etc/element-web>
Options none
AllowOverride None
Require all granted
</directory>
</VirtualHost>