par , 29/09/2017 à 16h04 (1410 Affichages)
1/ On suppose que la configurationreverse proxy Apache est ok (httpd.conf avec le module proxy et rewrite décommenté)
Domino écoute en http sur le port 9080 (on peut changer)
Remplace http://www.mycompany.com par votre fqdn interne
Pour Linux, demander à Daniel Nashed son module (librairie) pour ne pas vous emmerder avec la casse dans les fichiers url
Dans le virtual host d'Apache:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyRequests On
ProxyTimeout 1800
ProxyPassMatch ^/(.*\.nsf)$ http://www.mycompany.com:9080/$1
ProxyPass /iNotes/ http://www.mycompany.com:9080/iNotes/
ProxyPass /domjs/ http://www.mycompany.com:9080/domjs/
ProxyPass /verse http://www.mycompany.com:9080/verse
ProxyPass /verse/ http://www.mycompany.com:9080/verse/
ProxyPass /pob/ http://www.mycompany.com:9080/pob/
ProxyPass /dojo/ http://www.mycompany.com:9080/dojo/
ProxyPass /sequoia/ http://www.mycompany.com:9080/sequoia/
ProxyPassReverse /iNotes/ http://www.mycompany.com:9080/iNotes/
ProxyPassReverse /mail/ http://www.mycompany.com:9080/mail/
ProxyPassReverse /verse/ http://www.mycompany.com:9080/verse/
ProxyPassReverse /verse http://www.mycompany.com:9080/verse
ProxyPassReverse /pob/ http://www.mycompany.com:9080/pob/
ProxyPassReverse /sequoia/ http://www.mycompany.com:9080/sequoia/
ProxyPassReverse /dojo/ http://www.mycompany.com:9080/dojo/ |