[users@httpd] trouble with virtualhost in http/https

2012-05-26 Thread Alain Roger
Hi, i have some issues with virtualhosts in http and https on windows 7. basically i have 2 virtualhost using http/https and setup as following: [code]#-- # website1 with Joomla 2.5 #-- DocumentRoot "d:/webserver/www/website1" ServerName websit

Re: [users@httpd] trouble with virtualhost in http/https

2012-05-26 Thread Eric Covener
your putting hostnames in instead of using name-based virtualhosts but this doesn't work as you expect. Try mimicing the examples in the manual and using NameVirtualHost *:80 ... ... - To unsubscribe, e-mail: users-unsubscr..

Re: [users@httpd] trouble with virtualhost in http/https

2012-05-26 Thread Alain Roger
I did as in the documentation: # Ensure that Apache listens on port 80 Listen 80 # Listen for virtual host requests on all IP addresses NameVirtualHost *:80 DocumentRoot /www/example1 ServerName www.example1.com # Other directives here DocumentRoot /www/example2 ServerName www.example2.org

Re: [users@httpd] trouble with virtualhost in http/https

2012-05-26 Thread Bill Unruh
On Sat, 26 May 2012, Alain Roger wrote: I did as in the documentation: # Ensure that Apache listens on port 80 Listen 80 # Listen for virtual host requests on all IP addresses NameVirtualHost *:80 DocumentRoot /www/example1 ServerName www.example1.com # Other directives here DocumentRoot

Re: [users@httpd] trouble with virtualhost in http/https

2012-06-06 Thread Pete Houston
You cannot have 2 https sites with different certificates sharing the same IP+port combination. This is a restriction of how https works and is outlined in the documentation here: http://httpd.apache.org/docs/2.4/ssl/ssl_faq.html#vhosts If you ensure that your https vhosts have either different IP

Re: [users@httpd] trouble with virtualhost in http/https

2012-06-06 Thread Frank Gingras
On 06/06/2012 05:51 AM, Pete Houston wrote: You cannot have 2 https sites with different certificates sharing the same IP+port combination. This is a restriction of how https works and is outlined in the documentation here: http://httpd.apache.org/docs/2.4/ssl/ssl_faq.html#vhosts If you ensure