@Aerya :
Le script est désormais éclaté en plusieurs parties, mais je pense que le le lien complet est celui-ci :
QuickBox
Fichier conf : "001-emby.domain.tld" (fonctionne)
<VirtualHost *:443>
ServerName emby.domain.tld/
ServerAlias emby.domain.tld/
ProxyRequests On
ProxyPreserveHost Off
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / https://127.0.0.1:8096/emby
ProxyPassReverse / https://IP_Serveur:8096/emby
SSLProxyEngine On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
SSLCertificateFile /etc/letsencrypt/live/domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
<VirtualHost *:80>
ServerName emby.domain.tld
ServerAlias emby.domain.tld
ProxyRequests On
ProxyPreserveHost Off
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://127.0.0.1:8920/emby
ProxyPassReverse / http://IP_Serveur:8920/emby
</VirtualHost>
Fichier conf : "002-rutorrent.conf" (fonctionne)
<VirtualHost *:80>
ServerName rutorrent.domain.tld
DocumentRoot /srv/rutorrent
<Directory /srv/rutorrent>
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>
Fichier conf : "002-rutorrent-ssl.conf" (fonctionne)
VirtualHost *:443>
ServerName rutorrent.domain.tld
DocumentRoot /srv/rutorrent
<Directory /srv/rutorrent>
Options FollowSymLinks
AllowOverride All
</Directory>
SSLProxyEngine On
SSLCertificateFile /etc/letsencrypt/live/domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
Fichier conf : "000-index.conf" (ne fonctionne pas)
<VirtualHost *:80>
ServerName domain.tld
DocumentRoot /root/QuickBox/dashboard/inc
<Directory /root/QuickBox/dashboard/inc>
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>
Fichier conf : "000-index-ssl.conf" (ne fonctionne pas)
<VirtualHost *:443>
ServerName domain.tld
DocumentRoot /root/QuickBox/dashboard/inc
<Directory /root/QuickBox/dashboard/inc>
Options FollowSymLinks
AllowOverride All
</Directory>
SSLProxyEngine On
SSLCertificateFile /etc/letsencrypt/live/domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
Pour les deux conf qui ne fonctionnent pas, j'ai testé en modifiant les chemins /root/QuickBox/dashboard/inc car le dashboard se trouve aussi dans /srv/rutorrent/home/inc
J'ai aussi tenté de faire ServerName
www.domain.tld et le résultat est le même...
(Edit 11h38) Ah, ben désormais plus rien de fonctionne, youpi....