Bonjour, je souhaite utiliser le mod_proxy de httpd (apache2), afin de faire une redirection vers mon serveur webmin.

je lance webmin et mon serveur httpd,
je tape dans mon URL https://www.domain.org/ et là j'ai une belle erreur 500 me disant qu'il y a un truc qui va pas.

D'où peut venir l'erreur ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
<IfModule mod_ssl.c>
        <VirtualHost www.domain.org:443>
                ServerAdmin webmaster@localhost
                ServerName www.domain.org
 
                ProxyPass / http://localhost:10000/
                ProxyPassReverse / http://localhost:10000/
                <Proxy *>
              Options Indexes FollowSymLinks MultiViews
               AllowOverride None
               Order allow,deny
              allow from all
                </Proxy>
 
                ErrorLog /var/log/apache2/error.log
                LogLevel warn
                CustomLog /var/log/apache2/ssl_access.log combined
 
                SSLEngine on
                SSLCertificateFile /etc/ssl/www/www.crt
                SSLCertificateKeyFile /etc/ssl/www/www.key
 
        </VirtualHost>
</IfModule>