This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal


May 1, 2014, 10:42 PM
1 Posts

IHS as reverse proxy with Domino

  • Category: Domino Server
  • Platform: Windows
  • Release: 9.0.1
  • Role: Administrator,Developer,End User
  • Tags: IHS
  • Replies: 2

I know that IHS is not officially supported as a reverse proxy for anything else when installed along with Domino 9.0.1 and enabled in front of Domino, but the http.conf seems to indicate that we can add statements to proxy specific urls to other servers. I can't find any documentation on this as the normal proxy statements don't work. Has anyone been able to get the bundled IHS to function as a front end to anything other than Domino? If so, any sample config statements would be appreciated!

Thanks in advance.

 

May 3, 2014, 9:40 AM
36 Posts
Try nginx
 

 

server {
listen *:80; ## listen for ipv4
server_name frontendserver;
access_log /var/log/nginx/access.log;
# forward to the back-end
location / {
proxy_pass http://backendserver;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_connect_timeout 120;
proxy_send_timeout 120;
proxy_read_timeout 180;
}
}

If you want to use ssl


This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal