Hi Chandrakanth, Following can give you some idea -
HTTP server can serve for both HTTP and HTTPS traffic on different ports (default 80 and 443). You can use virtual hosting for this or run two http server instances on same machine. SSL should be deployed on you http server only. Running Appserver on ssl will slow down performance etc ( and you may need SSL accelerator). i.e. redirection between your http server and app server (container) will be non-secured. On same machine https://secure.myserver.com:443 http://web.myserver.com:80 On different machine you can change your SSL port to any valid/free port. Better way of doing this is, two seperate machine one serving http traffic and other serving https traffic. i.e. running two http server's on two seperate machine's (one running ssl and other nonssl http server). Running https and http on same server will be loads of work for CPU and can make your http website slow. You need really good machine/server for this setup and do lots of load testing On liveserver side you can try this Create two projects one for secured content and other for non secure content in your liveserver. >From http server/instance redirect all non secure through http port 80 server (liveserver project nonsecured) for example /web/index.htm and secured traffic for example /secure/secureindex.htm to (secured project).You can do this by configuring connector on http servers. You can can even use same project with different directory structure. I think this is not a liveserver issue, this is more of web-setup/ Architecture issue. Above can be achieved in different ways. Hope this helps. thanks, Baliyan On Feb 18, 2:30 am, Chandrakanth Ramireddy <[email protected]> wrote: > Hi Baliyan, > > We have IBM HTTP Server and IBM WAS 6.1 . > Http server serves some static pages. But major part is redirection > only. > Pages we want to server through SSL are part of the Liveserver project > i.e they are some of the pages in the whole website. > > Regards > Chandrakanth > > On Feb 17, 11:39 pm, "[email protected]" <[email protected]> wrote: > > > Hi , > > > What kind of setup you have ? > > > Are they both (http and websphere) on same physical server or > > different server ? Do http server serve any webpage or it is total > > redirection ? Where is u r secured application deployed (pages you > > want to serve thorugh SSL) ? > > > Regards, > > Baliyan > > > On Feb 17, 12:53 pm, Chandrakanth Ramireddy <[email protected]> > > wrote: > > > > Hi Paul, > > > > Thank you for the reply. > > > > We have a 80 to 9080 redirection though http server plugin. > > > Could you please advise how this requirement can be achieved for the > > > above said setup. > > > > Regards > > > Chandrakanth > > > > On Feb 17, 1:22 pm, PaulG <[email protected]> wrote: > > > > > This is partiatlly dependant on your setup (e.g. if you have > > > > redirectors going between port 80 & 8080). > > > > > But, assuming you accessing liveserver directly, you'll need to: > > > > a. have an SSL certificate installed on the webserver > > > > b. set some page/application logic in the pages requiring SSL, to > > > > check the page protocol used and redirect if necessary > > > > it'll be something along the lines of: > > > > > <rde-dm:attribute attribute="tester" mode="write" source="request" > > > > value="[#request:rde-rd:httpHeader-protocol#].startsWith('https')" /> > > > > <rde-dm:attribute attribute="tester" source="request" mode="condition" > > > > op="eq" value="false"> > > > > <rde-dm:if> > > > > <rde-dm:process mode="redirect" url="https://page" /> > > > > </rde-dm:if> > > > > </rde-dm:attribute> > > > > > You might need to try a few variables to work out which one to compare > > > > against, e.g. something from the httpHeader, rdeHttpServer, > > > > rdeHttpsServer, etc > > > > > Paul. > > > > > On Feb 16, 10:05 pm, Chandrakanth Ramireddy <[email protected]> > > > > wrote: > > > > > > Hi, > > > > > > I have a requirement where some of the pages have to be made secure > > > > > (to be accessed as HTTPS). > > > > > > The whole site would be accessed through HTTP except those pages. > > > > > > We are using Websphere 6.1 as the appserver for hosting LiveServer. > > > > > > Please advise me how this can be acheived. > > > > > > Regards > > > > > Chandrakanth --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/RedDot-CMS-Users?hl=en -~----------~----~----~----~------~----~------~--~---
