Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
Apollogies for having taken so long to reply with updated status. I suspect my old installatioin of Apache 2.2.4 is buggered. There is absolutely no httpd program anywhere on the system, and the official documentation keeps telling me if I use: httpd -S I can get an analysis of what's going on

Re: [users@httpd] Almost There

2014-11-08 Thread Eric Covener
On Sat, Nov 8, 2014 at 11:30 AM, Steve Matzura s...@noisynotes.com wrote: I suspect my old installatioin of Apache 2.2.4 is buggered. There is absolutely no httpd program anywhere on the system, and the official documentation keeps telling me if I use: httpd -S Debian chose a different name.

Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
Eric: On Sat, 8 Nov 2014 11:37:31 -0500, you wrote: On Sat, Nov 8, 2014 at 11:30 AM, Steve Matzura s...@noisynotes.com wrote: I suspect my old installatioin of Apache 2.2.4 is buggered. There is absolutely no httpd program anywhere on the system, and the official documentation keeps telling

Re: [users@httpd] Almost There

2014-11-08 Thread Edgar Pettijohn
On 11/08/2014 11:00 AM, Steve Matzura wrote: Eric: On Sat, 8 Nov 2014 11:37:31 -0500, you wrote: On Sat, Nov 8, 2014 at 11:30 AM, Steve Matzura s...@noisynotes.com wrote: I suspect my old installatioin of Apache 2.2.4 is buggered. There is absolutely no httpd program anywhere on the

Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
Edgar: On Sat, 08 Nov 2014 11:09:36 -0600, you wrote: I have a feeling the answers to your problems can be found in: Include /etc/apache2/conf.d/ Nothing in there worth including except mailman.conf and squirrelmail.conf. Unless you want the security file, too. Include

Re: [users@httpd] Almost There

2014-11-08 Thread Eric Covener
On Sat, Nov 8, 2014 at 12:53 PM, Steve Matzura s...@noisynotes.com wrote: VirtualHost theglobalvoice.info:80 Don't put a hostname there. Use *:80 throughout if you don't care what local interface was used (you don't). That's why theglobalvoice.info steals all of your requests. It resolves to

Re: [users@httpd] Almost There

2014-11-08 Thread Edgar Pettijohn
On 11/08/2014 12:39 PM, Eric Covener wrote: On Sat, Nov 8, 2014 at 12:53 PM, Steve Matzura s...@noisynotes.com wrote: VirtualHost theglobalvoice.info:80 Don't put a hostname there. Use *:80 throughout if you don't care what local interface was used (you don't). That's why

Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
On Sat, 8 Nov 2014 13:39:07 -0500, you wrote: On Sat, Nov 8, 2014 at 12:53 PM, Steve Matzura s...@noisynotes.com wrote: VirtualHost theglobalvoice.info:80 Don't put a hostname there. Use *:80 throughout if you don't care what local interface was used (you don't). I tried that and it's still

Re: [users@httpd] Almost There

2014-11-08 Thread Edgar Pettijohn
On 11/08/2014 01:58 PM, Steve Matzura wrote: On Sat, 8 Nov 2014 13:39:07 -0500, you wrote: On Sat, Nov 8, 2014 at 12:53 PM, Steve Matzura s...@noisynotes.com wrote: VirtualHost theglobalvoice.info:80 Don't put a hostname there. Use *:80 throughout if you don't care what local interface was

Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
On Sat, 08 Nov 2014 12:49:18 -0600, you wrote: Make a backup copy of your httpd.conf: cp /path/to/httpd.conf /path/to/httpd.conf.bk and replace with the attachment and see what happens. I'll have to do some minor editing because our document root paths are quite different than the defaults.

Re: [users@httpd] Almost There

2014-11-08 Thread Steve Matzura
Edgar, Eric, et al.: All problems solved. For what reason I don't know, I did not need a VirtualHost block in httpd.conf for the main address. It may already have been defined in the main config file apache.conf, but when I removed the globalvoice.info block from httpd.conf and re-inserted the

Re: [users@httpd] Almost There

2014-11-07 Thread Edgar Pettijohn
What about the Includes? On 11/06/2014 10:14 PM, Steve Matzura wrote: It occurred to me that apache2.conf might be what's wanted. Here it is, without the comments, and lots of white space removed. ServerRoot /etc/apache2 LockFile /var/lock/apache2/accept.lock PidFile ${APACHE_PID_FILE}

[users@httpd] Almost There

2014-11-06 Thread Steve Matzura
I've swung my second domain over to the first address. The first domain URL still works, but the second newly added address does not. What happens is that when browsing to the new address, the correct server responds, but the default document root is used. This indicates to me that I've specified

Re: [users@httpd] Almost There

2014-11-06 Thread Edgar Pettijohn
I would recommend posting your config. On 11/06/2014 12:41 PM, Steve Matzura wrote: I've swung my second domain over to the first address. The first domain URL still works, but the second newly added address does not. What happens is that when browsing to the new address, the correct server

Re: [users@httpd] Almost There

2014-11-06 Thread Steve Matzura
I did. Here it is again. Actual domain names obfuscated to preserve anonymity. VirtualHost *:80 ServerName www.domain1.com ServerAlias domain1.com *.domain1.com DocumentRoot /webfiles-root/www/domain1.com /VirtualHost VirtualHost *:80 ServerName www.domain2.com ServerAlias domain2.com

Re: [users@httpd] Almost There

2014-11-06 Thread Steve Matzura
It occurred to me that apache2.conf might be what's wanted. Here it is, without the comments, and lots of white space removed. ServerRoot /etc/apache2 LockFile /var/lock/apache2/accept.lock PidFile ${APACHE_PID_FILE} Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 IfModule