Access to Inotes trough DMZ HTTP proxy

Hi,

I like to setup a http proxy server in our DMZ to access our company mails trough Inotes.

client on internet → (DMZ) http proxy → (internal lan) Notes server 8.5

Our test with Inotes 6.5 worked, after upgrading the mail file to 8.5 it stopped working. Is there any documentation on this topic for a open source solution?

Regards,

Geert

Subject: solution found

Install apache2 and make the following changes.

/etc/apache2/httpd.conf

DirectoryIndex index.html index.html.var login.nsf

/etc/apache2/httpd.conf

Include /etc/apache2/mod_proxy_html.conf

/etc/apache2/mod_proxy_html.conf

loadModule proxy_module /usr/lib/apache2/mod_proxy.so

LoadModule proxy_http_module /usr/lib/apache2/mod_proxy_http.so

LoadModule headers_module /usr/lib/apache2/mod_headers.so

ProxyRequests off

ProxyPreserveHost On

ProxyPass /login.nsf http://Internal_MailServer/login.nsf

ProxyPassReverse /login.nsf http://Internal_MailServer/login.nsf

ProxyPass /domcfg.nsf http://Internal_MailServer/domcfg.nsf

ProxyPassReverse http://Internal_MailServer/domcfg.nsf /domcfg.nsf

ProxyPass /names.nsf http://Internal_MailServer/names.nsf

ProxyPassReverse http://Internal_MailServer/names.nsf /names.nsf

ProxyPass /domjava/ http://Internal_MailServer/domjava/

ProxyPassReverse http://Internal_MailServer/domjava /domjava/

ProxyPass /mail/ http://Internal_MailServer/mail/

ProxyPassReverse /mail/ http://Internal_MailServer/mail/

ProxyPass /iNotes/ http://Internal_MailServer/iNotes/

ProxyPassReverse /iNotes/ http://Internal_MailServer/iNotes/

ProxyPass /icons/ http://Internal_MailServer/icons/

ProxyPassReverse /icons/ http://Internal_MailServer/icons/

Subject: Still applies?

Geert - I am going to have to try this and see if it solves a problem I am having for a client.

Thanks for providing.