Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Saravanan Kannan
Dear Apache users, We need some guidance (or) installation steps on how to implement the PKI token certificates with Apache Web Server 2.2.3 for authentication purposes. Currently our production environment uses the iPlanet 6.1 webserver and Weblogic 10.0 as the application layer. The iPlanet 6.1

Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Tonu Mikk
I got the webdev.domain.com to work using the NameVirtualHost directive like this... NameVirtualHost 204.148.170.13:80 and configuring the the default Virtual Host like this: ServerSignature email DirectoryIndex index.php index.html index.htm index.shtml LogLevel warn HostNameLookups of

Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Tonu Mikk
Yes, indeed. Doing this works ... Thanks Chris! http://128.101.172.14/>> DocumentRoot "/var/www/html/madev" ServerName dsdev.oed.umn.edu AllowOverride All Options Indexes FollowSymLinks Order allow,deny Allow from all DocumentRoot "/var/www/html/madev" ServerName dsdev.oed.umn.edu SSLEngin

Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread chris
On Dienstag 02 November 2010, Eric Covener wrote: > > > > SSLEngine on > > You can't have SSL and non-SSL in a single vhost -- the non-ssl > requests that are mapped to this vhost won't work. But you can easily have two different vhosts, one on port 80, one on port 443 for the same URL. --

Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Eric Covener
> > SSLEngine on You can't have SSL and non-SSL in a single vhost -- the non-ssl requests that are mapped to this vhost won't work. -- Eric Covener cove...@gmail.com - The official User-To-User support forum of the Apache HTTP

Re: [us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Sai A
Hi Tonu, I myself am a newbie so don't take my words as gospel, but it looks like you are getting your configuration wrong. In order to be able to access webdev.domain.com, you must set a NameVirtualHost from what I understand. You also haven't specified a document root for webdev which you should

[us...@httpd] IP based virtual hosts for SSL

2010-11-02 Thread Tonu Mikk
Hello, I hope I can get some guidance from users on this list on how to configure virtual hosts for Apache 2.2. Eventually I would like to serve content on port 80 and 443 on two URLs: dsdev.domain.com and madev.domain.com, and on port 80 only on webdev.domain.com. Here is my scenario... I hav