par clemmm » 26 Déc 2003 12:01
bonjour, sur apache tu peut lui dire que tel dossier redirige vers tel machine....
<BR>
<BR>en gros ça va faire ton routeur -> ta machine apache -> ton 2eme PC ....
<BR>
<BR>c'est pas tres clean mais ça marche, je l'ai utilisé a une époque pour avoir le GUI de mldonkey sur mon serveur web !
<BR>
<BR>cétait dans <!-- BBCode u2 Start --><A HREF="http://www.nongnu.org/mldonkey/faq.html.fr#run8" TARGET="_blank">cette faq !</A><!-- BBCode u2 End -->
<BR>
<BR>extrait :
<BR>
<BR><!-- BBCode Quote Start --><TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font size=-2>En réponse à:</font><HR></TD></TR><TR><TD><FONT SIZE=-2><BLOCKQUOTE> Comment puis-je atteindre l'interface WEB de mldonkey si mon firewall n'autorise que le port 80 ?
<BR>
<BR>
<BR>Si vous voulez accéder à l'interface WEB (port 4080) à travers un pare-feu, et que le pare-feu n'autorise que le port 80, et vous ne voulez pas éxécuter mldonkey en tant que root, vous pouvez configurer le serveur WEB apache pour rediriger les requêtes à mldonkey :
<BR>
<BR>
<BR>Editez votre "httpd.conf" : Insérez les lignes suivantesquelque part dans la "Section 2: main server configuration" :
<BR>
<BR>RewriteEngine on
<BR>ProxyRequests on
<BR>RewriteRule /mldonkey <!-- BBCode auto-link start --><a href="http://localhost:4080/$1" target="_blank">http://localhost:4080/$1</a><!-- BBCode auto-link end --> [P,L]
<BR>RewriteRule /(submit.*) <!-- BBCode auto-link start --><a href="http://localhost:4080/$1" target="_blank">http://localhost:4080/$1</a><!-- BBCode auto-link end --> [P,L]
<BR>RewriteRule /(files.*) <!-- BBCode auto-link start --><a href="http://localhost:4080/$1" target="_blank">http://localhost:4080/$1</a><!-- BBCode auto-link end --> [P,L]
<BR>ProxyPassReverse /(.*) <!-- BBCode auto-link start --><a href="http://localhost:4080/$1" target="_blank">http://localhost:4080/$1</a><!-- BBCode auto-link end -->
<BR>
<BR>où, évidemment, localhost est votre hôte mldonkey, et 4080 est le http_port de mldonkey.
<BR>
<BR>
<BR>Avec ces règles, <!-- BBCode auto-link start --><a href="http://aaa.bbb.ccc.ddd/mldonkey" target="_blank">http://aaa.bbb.ccc.ddd/mldonkey</a><!-- BBCode auto-link end -->, où aaa.bbb.ccc.ddd est l'adresse IP de l'hôte qui héberge le serveur apache, devrait se connecter à votre mldonkey.</BLOCKQUOTE></FONT></TD></TR><TR><TD><HR></TD></TR></TABLE><!-- BBCode Quote End -->