IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Voir le flux RSS

Jérôme Deniau

Apache en frontal pour IBM Verse on Premise

Noter ce billet
par , 29/09/2017 à 15h04 (1346 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:


Code Apache : Sélectionner tout - Visualiser dans une fenêtre à part
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/

Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Viadeo Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Twitter Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Google Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Facebook Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Digg Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Delicious Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog MySpace Envoyer le billet « Apache en frontal pour IBM Verse on Premise » dans le blog Yahoo

Mis à jour 29/09/2017 à 20h20 par Malick (Ajout balises code)

Catégories
Sans catégorie

Commentaires