Forum Linux.debian/ubuntu Reverse-Proxy basculement https vers http

Posté par  .
Étiquettes :
0
11
oct.
2010
Bonjour à tous,

Je suis actuellement en phase de test du logiciel de transfert de fichier filez sur une debian squeeze.

http://gpl.univ-avignon.fr/filez/

J'ai réussi à le paramétrer correctement, il dispose de la possibilité de basculer en https lors de l'authentification puis de revenir en http une fois cette dernière validé.

le serveur apache2 qui héberge filez est derrière un reverse proxy (apache2 également)

Il se trouve que lors que j'accède au reverse proxy, l'authentification se fait bien en https mais après au lieu de basculer en http ce dernier continu de communiquer en https ce qui me donne cette erreur dans filez:

(GET) /http:/ftp.mondomaine.com/filez_web_root


Ma question est donc la suivante, comment filez peut faire savoir à mon reverse proxy qu'il faut basculer en http ?

Merci d'avance pour vos réponses.

Ci dessous la conf qui concerne filez sur le reverse proxy


<VirtualHost *:80>

ServerName ftp.mondomaine.com

ServerAdmin administrateur@mondomaine.com

ProxyPreserveHost on
ProxyRequests off

ProxyPass /filez_web_root/ http://ftp.mondomaine.com/filez_web_root/
ProxyPassReverse /filez_web_root/ http://ftp.mondomaine.com/filez_web_root/

ProxyPass /filez_web_root/ https://ftp.mondomaine.com/filez_web_root/
ProxyPassReverse /filez_web_root/ https://ftp.mondomaine.com/filez_web_root/

</VirtualHost>


NameVirtualHost *:443

<VirtualHost *:443>

ServerName ftp.mondomaine.com

ServerAdmin administrateur@mondomaine.com

ProxyPreserveHost on
ProxyRequests off

SSLEngine on
SSLProxyEngine on

SSLCertificateFile "/etc/apache2/ssl/webmail.crt"
SSLCertificateKeyFile "/etc/apache2/ssl/webmail.key"

ProxyPass /filez_web_root/ https://ftp.mondomaine.com/filez_web_root/
ProxyPassReverse /filez_web_root/ https://ftp.mondomaine.com/filez_web_root/

ProxyPass /filez_web_root/ http://ftp.mondomaine.com/filez_web_root/
ProxyPassReverse /filez_web_root/ http://ftp.mondomaine.com/filez_web_root/

</VirtualHost>

Suivre le flux des commentaires

Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.