You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Yves Arsenault <yv...@carrefour.peicaps.org> on 2003/11/04 20:35:33 UTC

[users@httpd] Apache serving pages very slowly

Hello,

I have to servers running next to each other on the same connection..

One is running 1.3.27

The other (that I just installed yesterday) is 2.0.48 on RedHat, I can view
the default page no problem, but when I try to view the manual, it just
seems to hang... locally 127.0.0.1 I have no problems.

Would it have anything to do with Apache?

Or does it sound like something else that someone may have seen before?

Thanks,

Yves


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Apache serving pages very slowly

Posted by Robert Andersson <ro...@profundis.nu>.
Yves Arsenault wrote:
> The other (that I just installed yesterday) is 2.0.48 on RedHat, I can
view
> the default page no problem, but when I try to view the manual, it just
> seems to hang... locally 127.0.0.1 I have no problems.

Look at ServerName and UseCanonicalName. See:
    http://httpd.apache.org/docs-2.0/mod/core.html#servername
    http://httpd.apache.org/docs-2.0/mod/core.html#usecanonicalname

A possible scenario is that you go to http://apache2.domain.tld/manual , in
which case Apache will do a redirect to http://hostname/manual/. Which
'hostname' Apache will use in the redirect URI is determined by the two
directives above.

For example, if the ServerName was set to 127.0.0.1 and UseCanonicalName was
On, it would redirect to http://127.0.0.1/manual/, which wouldn't work well
if you aren't on the box. You want to set ServerName to a FQDN, and, in most
casees, UseCanonicalName Off.

Regards,
Robert Andersson


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org