2.4 OHS Configuration

Provides details on configuration required on OHS to enable different URL’s for internal and external users. i.e authentication with OBDX or external service provider.

  1. Open obdx.conf file from OHS server. You can find the location of obdx.conf file from httpd.conf file.
  2. Verify if proxypass URLs are configured in obdx.conf file. If not then add entries as mentioned in below format.
    ProxyPassMatch "/digx(.*)" "<PROTOCOL>://<WL_HOST_NAME>:<WL_PORT>/digx$1"
    ProxyPassReverse "/digx(.*)" "<PROTOCOL>://<WL_HOST_NAME>:<WL_PORT>/digx$1"
    ProxyPassMatch "/saml2(.*)" "<PROTOCOL>://<WL_HOST_NAME>:<WL_PORT>/saml2$1"
    ProxyPassReverse "/saml2(.*)" <PROTOCOL>://<WL_HOST_NAME>:<WL_PORT>/saml2$1
    ProxyPassMatch "/digx(.*)" "http://whf000xxx.bank.com:19003/digx$1"
    ProxyPassReverse "/digx(.*)" "http://whf000xxx.bank.com:19003/digx$1"
    ProxyPassMatch "/saml2(.*)" "http://whf000xxx.bank.com:19001/saml2$1"
    ProxyPassReverse "/saml2(.*)" "http://whf000xxx.bank.com:19001/saml2$1"
  3. Add below virtual configuration into obdx.conf file.
    ##Virtual HostsListen <PORT_1><VirtualHost *:<PORT_1>>    ServerName
            <HOST_NAME>   
            RewriteEngine On   
            RewriteOptions inherit           
              <Directory
            "${DocumentRoot}">      
            Options FollowSymLinks       
            AllowOverride all   
            </Directory></VirtualHost> Listen <PORT_2><VirtualHost
              *:<PORT_2>>           
            ServerName <HOST_NAME>           
            RewriteEngine On           
              RewriteRule    "^(.*)/config\.js$"
              "<SERVER_PROTOCOL>://<HOST_NAME>:<PORT_2>/framework/js/configurations/config-admin.js"  [R]           
              <Directory
            "${DocumentRoot}">       
            Options FollowSymLinks       
            AllowOverride all   
            </Directory>
        </VirtualHost>

    Note:

    Replace the <PORT_1> & <PORT_2> with the ports which are expose to outside world. Replace <SERVER_PROTOCOL> and <HOST_NAME> with appropriate values. E.g. http and whfxxx.sample.com (if hostname is not available then <HOST_NAME> value can be IP address.)

    OHC Configuration

  4. Save obdx.conf file and restart ohs server.