<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.apache.user">
    <title>gmane.comp.apache.user</title>
    <link>http://blog.gmane.org/gmane.comp.apache.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99961"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99957"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99950"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99949"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99944"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99933"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99932"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99929"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99926"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99922"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99914"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99913"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99911"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99908"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99901"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99897"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99890"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99888"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99886"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.user/99880"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99961">
    <title>trouble with virtualhost in http/https</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99961</link>
    <description>&lt;pre&gt;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
#--------------------------
&amp;lt;VirtualHost *:80&amp;gt;
  DocumentRoot "d:/webserver/www/website1"
  ServerName website1.loc
  ServerAlias www.website1.loc
  ErrorLog "logs/website1.loc.error.log"
  CustomLog "logs/website1.loc.access.log" common

  AccessFileName .htaccess

  &amp;lt;Directory "d:/webserver/www/website1/"&amp;gt;
    AllowOverride All
    Order deny,allow
    Deny from all
    Allow from 192.168.x.x
    Allow from 127.0.0.1
  &amp;lt;/Directory&amp;gt;
&amp;lt;/VirtualHost&amp;gt;

&amp;lt;VirtualHost website1.loc:443&amp;gt;
  DocumentRoot "d:/webserver/www/website1"
  ServerName website1.loc
  ServerAlias www.website1.loc
  ErrorLog "logs/website1.loc.error.log"
  CustomLog "logs/website1.loc.access.log" common

      SSLEngine on
    SSLCertificateFile conf/ssl.crt/server.crt
    SSLCertificateKeyFile conf/ssl.key/server.key

  AccessFileName .htaccess

  &amp;lt;Directory "d:/webserver/www/website1/"&amp;gt;
    AllowOverride All
    Order deny,allow
    Deny from all
    Allow from 192.168.1.x
    Allow from 127.0.0.1
  &amp;lt;/Directory&amp;gt;

&amp;lt;/VirtualHost&amp;gt;

#--------------------------
# website2 with Joomla 2.5
#--------------------------
&amp;lt;VirtualHost *:80&amp;gt;
  DocumentRoot "d:/webserver/www/website2"
  ServerName website2.loc
  ServerAlias www.website2.loc
  ErrorLog "logs/website2.loc.error.log"
  CustomLog "logs/website2.loc.access.log" common

  AccessFileName .htaccess

  &amp;lt;Directory "d:/webserver/www/website2/"&amp;gt;
    AllowOverride All
    Order deny,allow
    Deny from all
    Allow from 192.168.x.x
    Allow from 127.0.0.1
  &amp;lt;/Directory&amp;gt;
&amp;lt;/VirtualHost&amp;gt;

&amp;lt;VirtualHost website2.loc:443&amp;gt;
  DocumentRoot "d:/webserver/www/website2"
  ServerName website2.loc
  ServerAlias www.website2.loc
  ErrorLog "logs/website2.loc.error.log"
  CustomLog "logs/website2.loc.access.log" common

      SSLEngine on
    SSLCertificateFile conf/ssl.crt/server.crt
    SSLCertificateKeyFile conf/ssl.key/server.key

  AccessFileName .htaccess

  &amp;lt;Directory "d:/webserver/www/website2/"&amp;gt;
    AllowOverride All
    Order deny,allow
    Deny from all
    Allow from 192.168.1.x
    Allow from 127.0.0.1
  &amp;lt;/Directory&amp;gt;

&amp;lt;/VirtualHost&amp;gt;
[/code]

in my host file i have:
www.website1.loc   192.168.1.x
website1.loc   192.168.1.x
www.website2.loc   192.168.1.x
website2.loc   192.168.1.x

1. now when in my browser i type website2.loc i have an error 500
2. if instead of using &amp;lt;VirtualHost *:80&amp;gt; i use &amp;lt;VirtualHost
website1.loc:80&amp;gt; and &amp;lt;VirtualHost website2.loc:80&amp;gt; respectively for
website1 and website2.... only website1.loc works :(
so where is my mistake ?
thx.

&lt;/pre&gt;</description>
    <dc:creator>Alain Roger</dc:creator>
    <dc:date>2012-05-26T11:56:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99957">
    <title>non-www to www redirect works with a little issue</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99957</link>
    <description>&lt;pre&gt;Hello,

I have place the following in my .htaccess to redirect non-www to www redirection 

`````````````
RewriteCond %{HTTP_HOST} ^example\.com$
RewriteRule ^(.*) http://www.example.com/$1 [R=301]

```````````````

The redirect work well but a little hitch.
Say If I visit http://example.com/page1.html it redirect to
http://www.example.com so at the home page. Where it should
append the www before the link, but not alter the link.

What modification should I add here to make it work ?

Thanks
&lt;/pre&gt;</description>
    <dc:creator>J. Bakshi</dc:creator>
    <dc:date>2012-05-25T10:53:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99950">
    <title>Should name based virtual hosts work when the ServerName is an IP address?</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99950</link>
    <description>&lt;pre&gt;If I have a configuration like this:

NameVirtualHost 192.200.0.1:80
&amp;lt;VirtualHost 192.200.0.1:80&amp;gt;
        ServerName default.example.com
... stuff ...
&amp;lt;/VirtualHost&amp;gt;
&amp;lt;VirtualHost 192.200.0.1:80&amp;gt;
        ServerName a.example.com
... stuff ...
&amp;lt;/VirtualHost&amp;gt;

then http://a.example.com/ will return the second site (correctly), not the
default site.

If I use an IP address as the name of the second site like this:

NameVirtualHost 192.200.0.1:80
&amp;lt;VirtualHost 192.200.0.1:80&amp;gt;
        ServerName default.example.com
... stuff ...
&amp;lt;/VirtualHost&amp;gt;
&amp;lt;VirtualHost 192.200.0.1:80&amp;gt;
        ServerName 192.200.0.1
... stuff ...
&amp;lt;/VirtualHost&amp;gt;

the I would expect http://192.200.0.1/ to return the second site, not
the default site. However, it seems to return the default.

Is this a bug, and is there any work around? (I want the default site
to be there still).

&lt;/pre&gt;</description>
    <dc:creator>Alex Bligh</dc:creator>
    <dc:date>2012-05-24T19:13:16</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99949">
    <title>Turning mod_reqtimeout off on a per session basis</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99949</link>
    <description>&lt;pre&gt;I am seeing some odd behaviour with mod_reqtimeout, and have a couple
of questions on its internals (apache2-mpm-prefork 2.2.14-5ubuntu8.9)

Q1. I have an environment which is doing this (in essence):

RequestReadTimeout header=10-20,minrate=500
RequestReadTimeout body=10,minrate=500

NameVirtualHost 192.200.0.1:80
... uninteresting default virtual host...
&amp;lt;VirtualHost 192.200.0.1:80&amp;gt;
        ServerName a.example.com
RequestReadTimeout header=0 body=0
... stuff ...
&amp;lt;/VirtualHost&amp;gt;

RequestReadTimeout on the VirtualHost does not override RequestReadTimeout
at a global level. I still see mod_reqtimeout closing the socket to
long lasting requests on this virtual host. Disabling at the global
level works fine. Have I misunderstood how this is meant to work?

Q2. Sadly, disabling it at the global level isn't really enough for me.
What I am doing is using self.disconnect's apache modwebsockets code.
The sessions it uses are long lasting. Running without SSL (we seem
to have fewer problems with SSL) we see disconnects even with parameters
like this:
   RequestReadTimeout body=300,minrate=1

As far as I can tell, that means every 1 byte it should increase the
timeout by 1, from 300 up to infinity. But after sometimes as little
as 10 seconds, we see a timeout. There is far more traffic than this
passing (we're sending a websockets ping every couple of seconds)

How does mod_reqtimeout monitor the presence of traffic? I'm using
ap_get_brigade to read data, and ap_fwrite/ap_fflush to write data
back. It's almost as if it's not seeing the data at all (it appears
to be better on ssl).

What I'd really like to do is just turn off mod_reqtimeout when the
websockets connection is active, as at that point I'm doing my own
idle checking. Can I somehow call into mod_reqtimeout and modify
the parameters on the request and tell it to stop whatever it's
doing?

&lt;/pre&gt;</description>
    <dc:creator>Alex Bligh</dc:creator>
    <dc:date>2012-05-24T18:13:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99944">
    <title>LD_LIBRARY_PATH issue in 2.2.22 and earlier</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99944</link>
    <description>&lt;pre&gt;One of the PCI scanning companies is demanding an upgrade to 2.4.2 due to the issues described in this CVE:
Changes with Apache 2.2.23

  *) SECURITY: CVE-2012-0883 (cve.mitre.org)
     envvars: Fix insecure handling of LD_LIBRARY_PATH that could lead to the
     current working directory to be searched for DSOs. [Stefan Fritsch]
Is there any idea when 2.2.23 will be released? I'd rather not upgrade to 2.4.2

Apologies if this is the wrong list for this.

Best,

Luke Lozier

---

Bibliopolis, LLC
Berkeley | Pittsburgh

http://www.bibliopolis.com




&lt;/pre&gt;</description>
    <dc:creator>Luke Lozier</dc:creator>
    <dc:date>2012-05-24T17:05:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99933">
    <title>Rewrite Role: navigation toolbar trouble</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99933</link>
    <description>&lt;pre&gt;I need that the url http://www.example.com/a.htm will point
http://www.example.com/a/b/c/d.htm; in navigation toolbar of the browser
you should view only http://www.example.com/a.htm.
I've "solved" using a symlink between the file /webroot/a/b/c/d.htm and
/webroot/a.htm.
Is it possible to solve it by using some rewrite roles/ or some httpd
configs?
Regards
Michele Masè
&lt;/pre&gt;</description>
    <dc:creator>Michele Mase'</dc:creator>
    <dc:date>2012-05-24T07:57:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99932">
    <title>CLOSE_WAIT problem</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99932</link>
    <description>&lt;pre&gt;Hi all,

I sent this issue to the dev mailing but I couldn't receive any responses. I
think this subject is fit to be discussed in the user mailing so I am
sending this again. :-)

When I tested mod_proxy + mod_proxy_balancer + (mod_proxy_ajp or
mod_proxy_http) with worker mpm, I always met CLOSE_WAIT state in apache
httpd proxy side.

I tested the following scenario.

- Sending a request at the browser -&amp;gt; apache httpd,  mod proxy -&amp;gt; ajp or
http java server(1)
- Normally, browser received the response correctly and the connection state
became to be ESTABLISHED.
- And java server closed the ajp or http connection with timeout(Or
terminate java server forcibly).
- Then apache httpd proxy machine always had the CLOSE_WAIT state about the
connection.

It seemed that the apache httpd proxy modules(?) did not try to close the
invalid socket which had been already closed at the peer side(the backend
java server side).

Perhaps is it already the known issue?

When I searched similar issues, I found
https://issues.apache.org/bugzilla/show_bug.cgi?id=51814 .

Actually, I am not sure that this problem is related to mod_proxy modules
because I could meet the same problem with using mod_jk(In other words, I
think that it can be httpd's issue. but I am not sure). In mod_jk, I could
work around the problem with using periodic ping logic which cleaned up the
CLOSE_WAIT connections.

Please give me some advice if I am misunderstanding something.

I'd appreciate some help.

Thanks!

--
httpd version: 2.4.2
backend java server: grizzly http/ajp, playframework(maybe it uses netty)
os: httpd(Linux 2.6.18 x86_64), backend server(MacOs)
--

Regards,
Bongjae Chang


&lt;/pre&gt;</description>
    <dc:creator>Bongjae Chang</dc:creator>
    <dc:date>2012-05-24T04:25:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99929">
    <title>Error: The page isn't redirecting properly</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99929</link>
    <description>&lt;pre&gt;Hi,

I'm running apache2 Version: 2.2.16-6+squeeze4 on my Debian GNU/Linux
Squeeze operating system.

I have installed Moodle on this web server and it can be opened from
the Internet: http://cspl.me/moodle

I have my small (Joomla) website too: http://cspl.me on this web server.

It can be opened from my home LAN but can't be opened from the Internet.

One get the error message:
The page isn't redirecting properly
Iceweasel has detected that the server is redirecting the request for
this address in a way that will never complete. 

What can cause this problem?
Any advices will be appreciated!

&lt;/pre&gt;</description>
    <dc:creator>Csanyi Pal</dc:creator>
    <dc:date>2012-05-23T19:23:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99926">
    <title>mod_fcgid setting content-type header</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99926</link>
    <description>&lt;pre&gt;Hi,

I am running PHP through mod_fgcid using the following setup in a conf file:

&amp;lt;IfModule !mod_php4.c&amp;gt;
&amp;lt;IfModule !mod_php4_filter.c&amp;gt;
&amp;lt;IfModule !mod_php5.c&amp;gt;
&amp;lt;IfModule !mod_php5_filter.c&amp;gt;
&amp;lt;IfModule !mod_php5_hooks.c&amp;gt;
&amp;lt;IfModule mod_actions.c&amp;gt;
&amp;lt;IfModule mod_alias.c&amp;gt;
&amp;lt;IfModule mod_mime.c&amp;gt;
&amp;lt;IfModule mod_fcgid.c&amp;gt;
&amp;lt;IfModule mod_headers.c&amp;gt;
        DefaultInitEnv  PHPRC=/etc/php5/cgi
        #DefaultInitEnv PHP_FCGI_MAX_REQUESTS 5000

        AddHandler php-fcgi .php .css
        Action php-fcgi /fcgi-bin/php-fcgi-wrapper
        AddType application/x-httpd-php .php .css
        &amp;lt;FilesMatch "\.css$"&amp;gt;
                Header set Content-type "text/css"
        &amp;lt;/FilesMatch&amp;gt;

        Alias /fcgi-bin/ /var/www/fcgi-bin.d/php5-default/
        &amp;lt;Location /fcgi-bin/&amp;gt;
                SetHandler fcgid-script
                Options +ExecCGI
                Order Allow,Deny
                Allow from All
        &amp;lt;/Location&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;
&amp;lt;/IfModule&amp;gt;

As you can see, in addition to parsing .php files as PHP, I am also parsing
.css files as PHP. This is indeed working, however the Content-type is not
being set correctly in the response headers from my server. The
Content-type for .css files is still text/html. I added the &amp;lt;FilesMatch
"\.css$"&amp;gt; directive to try to set the Content-type, but that is not
working. I'm guessing that the fact that I'm using mod_fcgid has something
to do with this, as the mod_fcgid processing is probably rewriting the
Content-type to text/html after I set it to text/css? I've tried several
different permutations including the ForceType directive, but I just can't
get the Content-type set correctly. The only approach I've found that works
is to stick a header("Content-type: text/css") at the top of my css files,
which is inconvenient to say the least. Anyone have a solution for this?

Thanks,
Ross
&lt;/pre&gt;</description>
    <dc:creator>Ross Garinger</dc:creator>
    <dc:date>2012-05-23T17:22:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99922">
    <title>Single auth file for many per-user directories</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99922</link>
    <description>&lt;pre&gt;Hi all,

I would appreciate any suggetions on how to achieve the following:

I have a large number of per-user directories:

  /var/www/user1
  /var/www/user2
  /var/www/user3
  ...

And a htdigest file containing usernames and passwords for all of these
users.

I want to set up authentication for each user to access just their own
directory.

The obvious method is to have a very long Apache config file, with
"Require user1", "Require user2", etc. specified manually for each
directory.

However, I have a lot of users!

Is there some clever way around this, for example a way to do:

  Require &amp;lt;auth_username=root_directory_name&amp;gt;


Or alternatively, a way for me to have "Require valid-user", but then
somehow prevent users from accessing directories other than their own?
(even with a hack like rewrite rules?)

Thanks for any pointers,

Richard.
&lt;/pre&gt;</description>
    <dc:creator>Richard Davies</dc:creator>
    <dc:date>2012-05-23T11:30:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99914">
    <title>Denial of Service due to multiplication of httpd running</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99914</link>
    <description>&lt;pre&gt;
Madriva 2010.2 running httpd apache 2.2.22

I am having trouble with httpd requests staying active and multiplying. 
I just came off having 160 versions of httpd running and completely slowing
down the system. I upgraded to 2.2.22 and it still happens (it went from the
normal 10 servers running to 15 in about a 1/2 hour.) According to the start
times, these seem to be associated with totally bizarre requests from google
(forged addresses?)

Eg, here is one entry from the ps auxww  list

apache   18137  0.0  0.5  26844  5744 ?        S    09:34   0:00 /usr/sbin/httpd -f /etc/httpd/conf/httpd.conf -DAPACHE2 -DHAVE_PERL -DHAVE_PHP5 -DHAVE_ACTIONS -DHAVE_ALIAS -DHAVE_ASIS -DHAVE_AUTH_BASIC -DHAVE_AUTH_DIGEST -DHAVE_AUTHN_ALIAS -DHAVE_AUTHN_ANON -DHAVE_AUTHN_DBM -DHAVE_AUTHN_DEFAULT -DHAVE_AUTHN_FILE -DHAVE_AUTHZ_DBM -DHAVE_AUTHZ_DEFAULT -DHAVE_AUTHZ_GROUPFILE -DHAVE_AUTHZ_HOST -DHAVE_AUTHZ_OWNER -DHAVE_AUTHZ_USER -DHAVE_AUTOINDEX -DHAVE_BUCKETEER -DHAVE_CASE_FILTER -DHAVE_CASE_FILTER_IN -DHAVE_CERN_META -DHAVE_CGI -DHAVE_CGID -DHAVE_CHARSET_LITE -DHAVE_DIR -DHAVE_DUMPIO -DHAVE_ECHO -DHAVE_ENV -DHAVE_EXAMPLE -DHAVE_EXPIRES -DHAVE_EXT_FILTER -DHAVE_FILTER -DHAVE_HEADERS -DHAVE_IDENT -DHAVE_IMAGEMAP -DHAVE_INCLUDE -DHAVE_INFO -DHAVE_LOG_CONFIG -DHAVE_LOG_FORENSIC -DHAVE_LOGIO -DHAVE_MIME -DHAVE_MIME_MAGIC -DHAVE_NEGOTIATION -DHAVE_OPTIONAL_FN_EXPORT -DHAVE_OPTIONAL_FN_IMPORT -DHAVE_OPTIONAL_HOOK_EXPORT -DHAVE_OPTIONAL_HOOK_IMPORT -DHAVE_REWRITE -DHAVE_SETENVIF -DHAVE_SPELING -DHAVE_SSL -DHAVE_STATUS -DHAVE_SUBSTITUTE -DHAVE_SUEXEC -DHAVE_UNIQUE_ID -DHAVE_USERTRACK -DHAVE_VERSION -DHAVE_VHOST_ALIAS

At that time in the 
access_log I have a whole bunch of entries like
::1 - - [22/May/2012:09:34:22 -0700] "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.2.22 (Mandriva Linux/PREFORK-0.1mdv2010.2) (internal dummy connection)"


In the past I have also had connections like 
66.249.68.198 - - [22/May/2012:09:35:25 -0700] "GET /aggregator/www.umsl.edu/~keelr/010/www.twitter.com/www.iaea.org/Publications/Documents/Board/2008/www.environment-agency.gov.uk/homeandleisure/floods/node/www.guardian.co.uk/business/2012/feb/21/node/node/22?page=11 HTTP/1.1" 200 58609 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"

associated with the times of the startup of those persistant connections. This
looks to be a totally bizzare GET. since that address certainly has nothing to
do with my site.

In the error log around that time I get nothing that looks suspicious

[Tue May 22 09:31:54 2012] [error] [client 119.63.196.27] File does not exist: /usr/local/http/htdocs/robots.txt
[Tue May 22 09:32:25 2012] [error] [client 86.68.18.171] File does not exist: /usr/local/http/htdocs/favicon.ico
[Tue May 22 09:36:47 2012] [error] [client 89.144.206.157] File does not exist: /usr/local/http/htdocs/thirdman/reichs/blank.gif, referer: http://axion.physics.ubc.ca/thirdman/reichs/reichsbruecke.htm

&lt;/pre&gt;</description>
    <dc:creator>Bill Unruh</dc:creator>
    <dc:date>2012-05-22T17:02:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99913">
    <title>Proxy streaming of files</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99913</link>
    <description>&lt;pre&gt;I configured a reverse-proxy server using apache, but I need to know if the files can be streamed to the requestors while they are being transferred from the proxied server and stored in the cache.
Can streaming work with any type of file, no matter if it's a plain text, html or picture?

Any help is highly appreciated.

Thank you
&lt;/pre&gt;</description>
    <dc:creator>Salvador, Edwin</dc:creator>
    <dc:date>2012-05-22T16:32:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99911">
    <title>modules/arch/unix/</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99911</link>
    <description>&lt;pre&gt;Hello !

its possible to build this module in apache 2.4 ?
I need it for mod_fcgid and ap_unixd_setup_child()

Regards,
Piotr&lt;/pre&gt;</description>
    <dc:creator>Piotr Kloc</dc:creator>
    <dc:date>2012-05-22T15:53:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99908">
    <title>Apache delays response 30 sec (keep-alive expires)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99908</link>
    <description>&lt;pre&gt; 
Hi,
I use apache 2.2.17 with tomcat 6.0.29 connected via mod_jk 1.2.31. At one customer (only in one system and it was not re-produced elsewhere) I have the following issue: 1) client sends request to apache HTTP/1.1
2) apache forwards to tomcat
3) tomcat sends response to apache
4) apache sends some packets back
5) there is a 30 seconds delay before last packets are send followed by a FIN packet from apache. 30 seconds is a keep-alive timeout in apache. So I assume that keep-alive somehow flushes the buffers so the response is finally send. There is no traffic on that connection for 30 seconds only the clients ACKs all data send till then. From the tcpdump I see nothing wrong in the AJP communication, e.g. it is properly ended. So  if there is a bug in the mod_jk or apache it looks to be quite specific. Also we had something similar cca 1,5 years ago with apache 2.2.8, where we got it working by changing from chunked encoding to content length in response (so I assume the size of the packet maybe plays a role somewhere). Now it is also not working with content-length, when compared the old
  packets the only small visible diff was that in one case the tcp segment size was 1448 (because tcp timestamps were used) and in the not working  case it was 1460, but I would assume to se
 e some error in tcpdump if that would be a network issue. Any idea what this could be? I could send tcpdump with the error case (not sure how big attachments can be send per email). Thanks,
Tomas.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe&amp;lt; at &amp;gt;httpd.apache.org
For additional commands, e-mail: users-help&amp;lt; at &amp;gt;httpd.apache.org&lt;/pre&gt;</description>
    <dc:creator>sspedia&lt; at &gt;centrum.sk</dc:creator>
    <dc:date>2012-05-22T11:17:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99901">
    <title>Apache22 + PHP 54</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99901</link>
    <description>&lt;pre&gt;Hello, I'm having issues configuring Apache22 &amp;amp; PHP54. 

I'm running FreeBSD 8.2
Apache22
Php54
php5-extensions-1.7 A "meta-port" to install PHP extensions

I have default httpd.conf have not make any changes.


When I got to my server 192.168.1.6
I get Index Of / but my web file. 

&amp;lt;IfModule dir_module&amp;gt;
    DirectoryIndex index.html index.php5 &amp;lt;/IfModule&amp;gt;


If I click on index.php, it shows text page. 

Please help!
Thanks, 
&lt;/pre&gt;</description>
    <dc:creator>motty.cruz</dc:creator>
    <dc:date>2012-05-21T15:26:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99897">
    <title>asynchronous connection (ap_mpm_register_timed_callback)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99897</link>
    <description>&lt;pre&gt;I know I write already an e-mail about the problem, but nobody answered me.
Now I start a second try.
Is anybody working with ap_mpm_register_timed_callback successful?
I think that the first request doesn't finish (is waiting for more data). When the second request wants some data, the response isn't successful. (It's loading the whole time)
I know that my explanation of the problem is not very well, but I don't know how to explain it in a better way.
I hope anybody can help me

Bernhard

Von: Pöchtrager, Bernhard
Gesendet: Freitag, 11. Mai 2012 14:12
An: 'users&amp;lt; at &amp;gt;httpd.apache.org'
Betreff: handle async requests

Hello

I am trying to work with asynchronous requests.
With synchronous requests everything WORKS fine.
I write it like mod_dialup.c.
The result is that every second request is unsuccessful (The Browser is loading the whole time). I think the problem is in the line " rv = ap_queue_pop_something(worker_queue, &amp;amp;csd, &amp;amp;cs, &amp;amp;ptrans, &amp;amp;te);" in the methode "static void *APR_THREAD_FUNC worker_thread(apr_thread_t * thd, void *dummy)" in the event.c file.

The relevant Code of the handler is:
ap_mpm_register_timed_callback(apr_time_from_msec(1000),callback,prr);
return SUSPENDED;

The callback method:
static void callback(void* data)
{
    request_rec* prr = (request_rec*) data;
    ap_finalize_request_protocol(prr);
    ap_process_request_after_handler(prr);
}

I hope you understand and solve my problem.

Thank you
Bernhard


&lt;/pre&gt;</description>
    <dc:creator>Pöchtrager, Bernhard</dc:creator>
    <dc:date>2012-05-21T10:37:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99890">
    <title>CGI script is not executed</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99890</link>
    <description>&lt;pre&gt;Hi experts,
I just set up my first httpd server 2.4.2. It is a simple setup, I took almost everything as default setting. 
After it was started, I tried test-cgi located in cgi-bin directory. The issue was that the script didn't run. The browser only displayed the script contents. Can anyone help ?

I checked httpd.conf which has 
ScriptAlias /cgi-bin/  "/usr/local/apache2/cgi-bin/"  

Here is the directory permission:
drwxr-xr-x  2 root root  4096 May 18 16:55 cgi-bin
scrip in cgi-bin t:
-rwxr-xr-x 1 root     games    1135 May 18 15:35 test-cgi
I know that httpd runs as user 'demon', but I think the cgi file has 755 permission, it should have no problem. 

Any help is appreciated.

Allen Liu
allenliu2000&amp;lt; at &amp;gt;gmail.com
+1 510 936-0101
&lt;/pre&gt;</description>
    <dc:creator>Allen Liu</dc:creator>
    <dc:date>2012-05-19T07:28:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99888">
    <title>How to configure SSL with apache2/httpd mass virtual hosting using mod_vhost_alias</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99888</link>
    <description>&lt;pre&gt;I have been searching quite a bit now but couldn't find any answers.

I have configured apache for mass virtual hosting. I.e.:

##httpd.conf
UseCanonicalName off
VirtualDocumentRoot /var/www/html/%0
##

I will have the same "main" domain with different subdomains pointing
to the virtual hosts. I have created a self-signed cert for testing
purpose with common name *.mydomain.com. There's one IP for the entire
server.

How can I configure apache to use ssl for my vhosts?

And if possible, added to above I would like to achieve this as well:

1. Can I define a directory, or preferable some files (e.g. login
page), that should be excluded from the ssl? All vhosts are basically
different instances of the same application (except the ones I mention
in 2 below).

2. Can I define some vhosts that should not use ssl (I have full
control of the subdomain name for those). This will be two
application, my home-page (www) and some administrative application.
If it's not possible to make exceptions, I guess I will just put those
on another server.

Except the ones I mentioned in 2 above, all virtual hosts will be
created automatically based on users request.

I could find examples of how to do this using mod-rewrite with the
exception that it wasn't for mass-domains (i.e. &amp;lt; VirtualHost &amp;gt; was
used).

What's the tricks for achieving this?

If not possible, I would be most happy to get some hints about how to do this.

Thanks!
&lt;/pre&gt;</description>
    <dc:creator>Niklas Johansson</dc:creator>
    <dc:date>2012-05-17T15:09:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99886">
    <title>Loadbalancing (AJP) problem, all workers are in error state</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99886</link>
    <description>&lt;pre&gt;Dear All

We have done loadbalancing using ajp connector with one apache2 (access
sever) and 3 tomcats. some time users/clients are getting error message
"Server temporally un-available". In apache access log I am getting message
"all workers are in error state"

 what is problem in my following configuration?
please suggest.


//httpd.conf

ProxyPass / balancer://myCluster/ stickysession=JSESSIONID|jsessionid
nofailover=On timeout=60
&amp;lt;Proxy balancer://myCluster&amp;gt;
    BalancerMember ajp://192.168.1.2:8009 route=sys02
    BalancerMember ajp://192.168.1.3:8009 route=sys03
    BalancerMember ajp://192.168.1.4:8009 route=sys04
&amp;lt;/Proxy&amp;gt;

Some one can  past their configuration?


Thanks
&lt;/pre&gt;</description>
    <dc:creator>Jehan</dc:creator>
    <dc:date>2012-05-17T07:07:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99880">
    <title>I need to know the number of connections that failed by timeout</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99880</link>
    <description>&lt;pre&gt; My Apache server is limited of RAM, so I had to downloaded the number of '
MaxClients'. That is why I need to know the number of connections that fail
by timeout, and if possible I need the date of each. Thanks so much!

PD: Sorry for my bad English...
&lt;/pre&gt;</description>
    <dc:creator>Lisandro Berardi</dc:creator>
    <dc:date>2012-05-16T12:36:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.user/99879">
    <title>Redirecting a domain to another using Rewrite rules</title>
    <link>http://comments.gmane.org/gmane.comp.apache.user/99879</link>
    <description>&lt;pre&gt;I need to forward a domain www.wiki-translation.com to a different location wiki-translation.wiki4us.com, while preserving the original url. 

I have been trying to do this for 30 mins now, using Rewrite rules, and nothing works.

For example, thje Parked domains CPanel functionality created the following lines in my .htaccess file:

---
RewriteCond %{HTTP_HOST} ^wiki\-translation\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.wiki\-translation\.com$
RewriteRule ^/?$ "http\:\/\/wiki\-translation\.wiki4us\.com\/" [R=301,L]
---

This works somewhat, in the sense that it redirects www.wiki-translation.com to wiki-translation.wiki4us.com. But it does not preserve the original URL.

I also tried this replacing the R flag with a P (proxy) flag:

---
RewriteCond %{HTTP_HOST} ^wiki\-translation\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.wiki\-translation\.com$
RewriteRule ^/?$ "http\:\/\/wiki\-translation\.wiki4us\.com\/" [R=301,L]
---

But it yields the error:

---
Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /.
Reason: DNS lookup failure for: wiki-translation.wiki4us.com
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
---

Then I tried this 

---
RewriteCond %{HTTP_HOST} ^wiki\-translation\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.wiki\-translation\.com$
RewriteRule ^/?$ "http\:\/\/www\.wiki4us\.com\/wiki\-translation\/" [P,L]
---

where www.wiki4us.com/wiki-translation/ is the actual location that the subdomain wiki-translation.wiki4us.com points to.

This one worked kindof. It does point to the right location, and preserves the original url www.wiki-translation.com. But the page comes out looking wrong, presumably because all the CSS files are not accesible as www.wiki4us.com/wiki-translation/*.css (just as wiki-translation.wiki4us.com/*.css). Dunno why.

Any advice you may have will be greatly appreciated.

Thx.&lt;/pre&gt;</description>
    <dc:creator>Desilets, Alain</dc:creator>
    <dc:date>2012-05-16T12:06:24</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.apache.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.apache.user</link>
  </textinput>
</rdf:RDF>

