Bonjour à tous, Et bonne année. J'ai un serveur web Ubuntu/Apache2 + SSL avec 3 Vhosts (site1.domain.org site2.domain.org site3.domain.org)... Je voudrais monter en amont, sur la même machine un reverse proxy avec nginx. Mon firewall/routeur fait du NAT : toutes les requêtes en 443 se dirigent vers le port 443 du serveur apache. Je fais pour l'instant quelques essais sans succès.
- Je ne touche pas au serveur apache. - Avec nginx j'ai fait la config suivante: server { listen 443; server_name site1.domain.org site2.domain.org site3.domain.org; location / { proxy_pass http://localhost:81; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } L'ennui c'est que nginx écoute en 443 ainsi que le serveur apache (??) Merci pour votre aide :) -- Cordialement, Thierry e-mail : lenai...@maelenn.org _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx