Re: [us...@httpd] rewrite to 443..please help me

2009-07-28 Thread danielitob
Ok.. that is configuration. What I need is running a we site on http, but when I send request to a protected/* page, request mu be managed under ssl. What I'm missing?Is this only configuration I have to do? In ssl.conf, I configured certificate. It seems I did it well, cause when I run

Re: [us...@httpd] SSI - file not included

2009-07-28 Thread Matus UHLAR - fantomas
On 08.07.09 09:06, Marc Patermann wrote: I tried a simple include with SSI. In the root directory I added a .htaccess file with AddType text/html .shtml AddOutputFilter INCLUDES .html In index-test.html i added !--#include virtual=./footer.html -- Is there any reason why do you include

RE: [us...@httpd] rewrite to 443..please help me

2009-07-28 Thread Boyle Owen
-Original Message- From: danielitob [mailto:gbatt...@aliceposta.it] Sent: Tuesday, July 28, 2009 9:06 AM To: users@httpd.apache.org Subject: Re: [us...@httpd] rewrite to 443..please help me Ok.. that is configuration. What I need is running a we site on http, but when I send

Re: [us...@httpd] Serving partial data of in-memory common data set

2009-07-28 Thread Tom Evans
On Mon, 2009-07-27 at 21:29 -0700, S.A. wrote: --- On Mon, 7/27/09, Tom Evans tevans...@googlemail.com wrote: From: Tom Evans tevans...@googlemail.com Subject: Re: [us...@httpd] Serving partial data of in-memory common data set To: users@httpd.apache.org Date: Monday, July 27, 2009,

[us...@httpd] Reason of dropping connections

2009-07-28 Thread Narendra Verma
Hi, I am facing one problem of dropping connections by apache load balancer. System environment: * Tomcat (As backend servers ) - Apache 2.2.8 load balancer (Using mod_proxy) * Apache server : Perform MPM setting StartServers 5 MinSpareServers 5

Re: [us...@httpd] Reason of dropping connections

2009-07-28 Thread André Warnier
Narendra Verma wrote: Hi, I am facing one problem of dropping connections by apache load balancer. .. maybe Getting error on tomcat server : WARNING: Error sending end packet java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) ... The

Re: [us...@httpd] rewrite to 443..please help me

2009-07-28 Thread Krist van Besien
On Tue, Jul 28, 2009 at 9:05 AM, danielitobgbatt...@aliceposta.it wrote: [warn] RSA server certificate CommonName (CN) `www.mysite.com' does NOT match server name!? This error is basically self explenatory. The Common Name in the certificate is not the same as the name you gave your server.

RE: [us...@httpd] Reason of dropping connections

2009-07-28 Thread Narendra Verma
Hi Andre, Thanks for your reply... Actually a browser is not being used to access apache server. I am performing load testing. Where load runner as a client is sending requests to apache. [loadRunner (configured 5 users) -- Apache --- Tomcat] About 24000 requests are being sent to apache in

Re: [us...@httpd] Serving partial data of in-memory common data set

2009-07-28 Thread S.A.
Hello, We have a requirement of serving fixed set of data elements (text, images, audio, video, etc) to a group of users coming at about the same time, but each user requesting different set of data elements from the given data set. Data set is fixed, but

Re: [us...@httpd] Reason of dropping connections

2009-07-28 Thread Eric Covener
On Tue, Jul 28, 2009 at 4:59 AM, Narendra Vermanarendra.ve...@impetus.co.in wrote: WARNING: Error sending end packet java.net.SocketException: Broken pipe     at java.net.SocketOutputStream.socketWrite0(Native Method)     at Does your Apache error log imply any crashes? -- Eric

Re: [us...@httpd] Apache 1.3.x or 2.x ?

2009-07-28 Thread Matus UHLAR - fantomas
On 12.07.09 11:48, Jos Chrispijn wrote: What I found out is that, with regards to Apache 1.3, Apache 2.0: - provides multi-threading support; - filtered input/output (I/O), which allows one module to modify the output of another module; - also provides support for SSL without any

RE: [us...@httpd] Reason of dropping connections

2009-07-28 Thread Narendra Verma
Hi Eric, Thanks for your reply. No, it seems that error is coming only at tomcat backend side. -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Tuesday, July 28, 2009 4:29 PM To: users@httpd.apache.org Subject: Re: [us...@httpd] Reason of dropping connections On

FW: [us...@httpd] Reason of dropping connections

2009-07-28 Thread Narendra Verma
Hi Eric, Thanks for your reply. No, it seems that error is coming only at tomcat backend side. -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Tuesday, July 28, 2009 4:29 PM To: users@httpd.apache.org Subject: Re: [us...@httpd] Reason of dropping connections On

[us...@httpd] Long running Apache 2.2 process

2009-07-28 Thread Chandranshu .
Hi We are running Apache 2.2 and have setup PHP-CGI to serve PHP files. Today, we observed that a php-cgi process has been running for a very long time and is consuming 100% CPU. The parent apache process of this php-cgi has been running since July 26th. We do a graceful restart of the server

Re: [us...@httpd] Reason of dropping connections

2009-07-28 Thread Anantha Padmanabha
Typically, when you use tools like jmeter and stop requests suddenly, this can happen. If they are towards end of load testing session, it could be the issue that Andre explained Thanks anantha On Tue, Jul 28, 2009 at 4:07 PM, Narendra Verma narendra.ve...@impetus.co.in wrote: Hi Andre,

Re: [us...@httpd] Apache 1.3.x or 2.x ?

2009-07-28 Thread Nick Kew
Matus UHLAR - fantomas wrote: the whole fact that apache1 is obsolete, not developed for years and missing many functions of apache2, should be enough, don't you think? The last significant Apache 1 release was Apache 1.3 in 1998. Of course you can still use it, just as you can still use

[us...@httpd] Deflate - Logging ratios

2009-07-28 Thread Anantha Padmanabha
Hi, I am using Apache 2.2.8. I tried to add logging for deflate [gzip] ratios in a dev machine by looking at http://httpd.apache.org/docs/2.0/mod/mod_deflate.html and some other articles on internet. Heres the configuration used: IfModule mod_deflate.c AddOutputFilterByType DEFLATE text/html

[us...@httpd] Re: Long running Apache 2.2 process

2009-07-28 Thread Chandranshu .
Hi We have now turned on mod_status and added the ExtendedStatus On directive to httpd.conf and have restarted apache gracefully. However, there is no information about the rogue process. I guess this is because that process was forked before this directive was turned on. Anything else we can

Re: FW: [us...@httpd] Reason of dropping connections

2009-07-28 Thread André Warnier
Narendra Verma wrote: .. Narendra, nothing to do with the problem at hand, but try to send your answers *only* to the list. We are getting your messages in double otherwise. Thanks. - The official User-To-User support forum

RE: [us...@httpd] rewrite to 443..please help me

2009-07-28 Thread danielitob
Thanks to everyone... I went on my linux server and I run openssl x509 -in cert.crt -noout -subject In output I've subject= /C=IT/ST=***/L=***/O=***/OU=***/OU=Terms of use at www.trustitalia.it/rpa (c) 04/OU=Authenticated by Trust Italia, S.p.A./OU=Member, VeriSign Trust

Re: [us...@httpd] Broken pipe

2009-07-28 Thread André Warnier
Darvin Denmian wrote: Hello, last week i activated LogLevel Debug in my Apache server, now apache's logs shows: [Tue Jul 28 11:04:40 2009] [info] [client XXX.75.240.8] (32)Broken pipe: core_output_filter: writing data to the network [Tue Jul 28 11:04:40 2009] [info] [client XXX.75.240.8]

Re: [us...@httpd] Broken pipe

2009-07-28 Thread Darvin Denmian
André, I will do that . Thanks. On Tue, Jul 28, 2009 at 11:11 AM, André Warniera...@ice-sa.com wrote: Darvin Denmian wrote: Hello, last week i activated LogLevel Debug in my Apache server, now apache's logs shows: [Tue Jul 28 11:04:40 2009] [info] [client XXX.75.240.8] (32)Broken pipe:

Re: [us...@httpd] Deflate - Logging ratios

2009-07-28 Thread Anantha Padmanabha
Hi Eric, I added content-encoding and the logs are similar: 192.168.0.57- - [28/Jul/2009:21:28:06 +0530]GET /bankdb/dashboard.html HTTP/1.1 200 16183 1151294 Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1) Gecko/20090624 Firefox/3.5 1289 16729 -/- (-)

[us...@httpd] download problem

2009-07-28 Thread _angelo
Hello All, i have probably simple question, maybe not really apache-related: Downloading some pdf from a remote site link, i found attached to the pdf (opening it with notepad) the html code of the page. The server seems using mod_rewrite style links like:

[us...@httpd] Symbolic links not working.

2009-07-28 Thread Steven Lobbezoo
Hi, After scanning all other docs, I still cannot figure out how to do the following: (Apache 2.2.4 on a Suse 11.0 box) I have a directory (in my server tree) with a web application. I have several virtual host (about 20 at the moment), I want to have use this directory (without that it's

Re: [us...@httpd] Symbolic links not working.

2009-07-28 Thread Tom Evans
On Tue, 2009-07-28 at 19:02 +0200, Steven Lobbezoo wrote: Hi, After scanning all other docs, I still cannot figure out how to do the following: (Apache 2.2.4 on a Suse 11.0 box) I have a directory (in my server tree) with a web application. I have several virtual host (about 20 at the

[us...@httpd] Question on DirectoryIndex

2009-07-28 Thread ARTHUR GOLDBERG
Hi (Hope this isn't a dupe. I just registered.) Running Server version: Apache/2.2.3 Server built: Jul 6 2009 05:29:28 Our website's accessed at two domains, like site.org and x.site.edu. It's largely driven by Perl programs loaded by mod_perl, but has some static content. I want to

Re: [us...@httpd] Question about Server Side Includes

2009-07-28 Thread André Warnier
Freddy Jensen wrote: ... Hi. Without being an expert on SSI, I do have the impression that your problem is this : the SSI processor does only one pass on your document. Any included things must be (or generate) proper html on the first pass. You cannot pull in something which would need a

Re: [us...@httpd] Question on DirectoryIndex

2009-07-28 Thread André Warnier
André Warnier wrote: ... Addendum : Note that if are really courageous, you should really have a look at this documentation page (something I should also do seriously some day) : http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html This stuff looks like it can do just about anything you'd

Re: [us...@httpd] Question about Server Side Includes

2009-07-28 Thread Torsten Foertsch
On Tue 28 Jul 2009, Freddy Jensen wrote: I have created a csh script which I invoke from my web page like this: !--#exec cmd=/somepath/check_for_debug.csh -- The script looks like this: #!/bin/csh -f echo '\!--#set var=MY_DEBUG value=1 --' exit 0 Right after executing the  csh script I

[us...@httpd] Adding Alias with HTTPS

2009-07-28 Thread rkw
I want to add an alias: Alias myApp /opt/installdir/myApp when I install my application. I can do this fine by adding a myApp.conf file into the /etc/httpd/conf.d folder But, this makes the application accessible both via http and https. I can add the alais into the Virtual Host on port 443 in

Re: [us...@httpd] Serving partial data of in-memory common data set

2009-07-28 Thread Jonathan Zuckerman
On Tue, Jul 28, 2009 at 3:37 AM, S.A.qmt...@yahoo.com wrote: Hello, We have a requirement of serving fixed set of data elements (text, images, audio, video, etc) to a group of users coming at about the same time, but each user requesting different set of data elements

Re: [us...@httpd] Serving partial data of in-memory common data set

2009-07-28 Thread André Warnier
Jonathan Zuckerman wrote: On Tue, Jul 28, 2009 at 3:37 AM, S.A.qmt...@yahoo.com wrote: ... Concurring with Jonathan about the free advice and the tenuous relevance to the main list topic, I'd nevertheless want to try to contribute. My summary of the issue : - there are N clients accessing

[us...@httpd] Can't alloc filename, referer: http://blah.com/somefile.shtml

2009-07-28 Thread Ezra Taylor
Gents: I'm gettng the above error. Can one of you shine some light on this? My setup is as follows. Thanks for your help. Redhat 4 update 8 Apache 2.0.25 -- Ezra Taylor

Re: [us...@httpd] Can't alloc filename, referer: http://blah.com/somefile.shtml

2009-07-28 Thread Jonathan Zuckerman
On Tue, Jul 28, 2009 at 5:33 PM, Ezra Taylorezra.tay...@gmail.com wrote:  Gents:    I'm gettng the above error.  Can one of you shine some light on this?  My setup is as follows.  Thanks for your help. Redhat 4 update 8 Apache 2.0.25 -- Ezra Taylor If you are interested in

[us...@httpd] Question about secure mod_proxy

2009-07-28 Thread Arash Afaghi
Hello I'm trying to setup a forward proxy server to help some students in Iran bypass internet censorship and access news sites. proxy is up on a random port and working perfectly. problem is websites that are censored still getting access denied by isp even through my proxy. I've heard