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 :
- All Ajenti URLs are absolute and start with /ajenti:, which makes it easy to reverse-proxy it with, for example, nginx:
- server {
- server_name fallthrough;
- client_max_body_size 20m;
- listen 80;
- location /ajenti {
- rewrite /ajenti/(.*) /$1 break;
- proxy_pass http://127.0.0.1:8000;
- proxy_redirect off;
- proxy_set_header Host $host;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- }
- }
|
Mais je n'arrive pas à l'adapter
Merci
---------------
nos utopies d'aujourd'hui sont les réalités de demain.