[Apache] Ajenti - Apache Proxy et rewrite rule

Ajenti - Apache Proxy et rewrite rule [Apache] - Réseaux - Systèmes & Réseaux Pro

Marsh Posté le 04-07-2013 à 13:56:19    

Bonjour,
 
J'ai installé le logiciel ajenti qui m'a l'air très bien
 
il fonctionne via l'adresse suivante : localhost:8000
 
Je voudrais rediriger le tout vers http://monserveur/Ajenti
 
J'ai fait ca :
 
        <location /ajenti>
                proxyPass http://127.0.0.1:8000
                proxyPassReverse http://127.0.0.1:8000
                RewriteRule /ajenti/(.*)$ $1
        </location>
 
Mais ça ne marche pas  
 
Pour info dans la doc il y a ça :
 

Code :
  1. All Ajenti URLs are absolute and start with /ajenti:, which makes it easy to reverse-proxy it with, for example, nginx:
  2. server {
  3.     server_name fallthrough;
  4.     client_max_body_size 20m;
  5.     listen 80;
  6.     location /ajenti {
  7.         rewrite /ajenti/(.*) /$1 break;
  8.         proxy_pass  http://127.0.0.1:8000;
  9.         proxy_redirect off;
  10.         proxy_set_header Host $host;
  11.         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  12.     }
  13. }


 
Mais je n'arrive pas à l'adapter
 
Merci


---------------
nos utopies d'aujourd'hui sont les réalités de demain.
Reply

Marsh Posté le 04-07-2013 à 13:56:19   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed