bjn2104 wrote:
I have a situation that I would like to know people's opinions on. I want to set up a section of my website (at this point running on apache 1.3, which is running on Slackware 10.0) so that it can only be viewed and used by a few specific people, and all packets between those users and the web server should be as unreadable to outside observers as possible. I have been researching the best way to do this, but have had trouble piecing together a complete solution. IPsec? SSL? What do you think the best way to do this is, and do you have any links that could help with implementation? Thank you.
Configure your web server to support SSL, and then put that section of the site behind the secure server. Use passsword authentication for those pages.
With SSL and password authentication:
* All traffic is encrypted using strong encryption and will completely unreadable by anyone sniffing the packets
* Only authenticated users will be able to read any of the web pages
I think this meets all your requirements.
It's been a while since I've done any web server configuration so I can't help you with the specific details of your server. But to answer your broader question, SSL and password authentication will satisfy your requirements.