WebSphere Application Server & Liberty

WebSphere Application Server & Liberty

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  Block https Requests on IBMIHS

    Posted 08/11/10 10:37 AM
    Block https Requests on IBMIHS

    --------------------------------

    Hello Friends!!!!

    Our application is hosted on WAS 6.0.
    We have publish our application on Internet by using SSL certificate.

    Now we want to allow access the URL for limited users.All internet user could not access the application only some configured IP address from which user can access the application.

    If we check the HTTP logs we found IP addresses from which https request (Internet Request) called.
    Can we block all the https request on HTTPServer and allow the request from some specific IP Adress only.

    If anyone knows pls help me urgently.

    Regards
    Irfan Mehmood

    --------------------------------

    Posted By: irfan.mehmood at Jun 22 2009 11:26AM


  • 2.  Block https Requests on IBMIHS

    Posted 08/11/10 10:45 AM
    Configure NameVirtualHost element in IHS.


    [quote=irfan.mehmood;8155]Hello Friends!!!!

    Our application is hosted on WAS 6.0.
    We have publish our application on Internet by using SSL certificate.

    Now we want to allow access the URL for limited users.All internet user could not access the application only some configured IP address from which user can access the application.

    If we check the HTTP logs we found IP addresses from which https request (Internet Request) called.
    Can we block all the https request on HTTPServer and allow the request from some specific IP Adress only.

    If anyone knows pls help me urgently.

    Regards
    Irfan Mehmood[/quote]


    --------------------------------

    Posted By: gangumolu at Jun 22 2009 2:21PM


  • 3.  Block https Requests on IBMIHS

    Posted 08/11/10 10:53 AM
    Edit your httpd.conf file using this as a guide. Should get the job done.


    SetHandler youruristem
    Order deny,allow
    Deny from all
    Allow from xxx.xxx.xxx.xxx


    --------------------------------

    Posted By: brewdude at Jun 22 2009 2:22PM