[us...@httpd] Deciding between mod_jk, mod_proxy_http and mod_proxy_ajp

2010-07-27 Thread Narendra Verma
Below link may be helpful if anybody is trying to decide which module should be used for Httpd and Tomcat communication * mod_jk * mod_proxy_http * mod_proxy_ajp http://www.tomcatexpert.com/blog/2010/06/16/deciding-between-modjk-modproxyhttp-and-modproxyajp ___

[us...@httpd] where i can find mod_deflate package?

2010-07-27 Thread PIPIT isnatia
Hi all... I am looking for mod_deflate package, i mean all contents in mod_deflate. where i can find it? Thanks. Best regards, Isnatia - The official User-To-User support forum of the Apache HTTP Server Project. See ht

[us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Hajo Locke
PHP in CGI mode consumes lot of memory because, for every request a PHP interpreter is called up, so your memory is filled with N php interpreters executing the same PHP code where N is the number of online users. There is no way to avoid it except using some different method like fastcgi/mod_php.

Re: [us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Nilesh Govindarajan
If I understood your question properly, you're asking that /htdocs/a.php is one fastcgi app and /htdocs/b.php is another. If you want it this way, then you will have to add the shebang (#!) line to all of your scripts before Options +ExecCGI ExpiresActive Off And the source code

Re: [us...@httpd] where i can find mod_deflate package?

2010-07-27 Thread Mark Watts
On Tue, 2010-07-27 at 17:39 +0800, PIPIT isnatia wrote: > Hi all... > > I am looking for mod_deflate package, i mean all contents in mod_deflate. > where > i can find it? Documentation is here: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html Source code is available here, since its part

Re: [us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Jefferson Ogata
On 2010-07-27 10:15, Nilesh Govindarajan wrote: > If I understood your question properly, you're asking that > /htdocs/a.php is one fastcgi app and /htdocs/b.php is another. > If you want it this way, then you will have to add the shebang (#!) > line to all of your scripts before solution if you h

[us...@httpd] Module Compilation Changes between 2.0 and 2.2

2010-07-27 Thread Michael Powe
Hello, I have a module that compiles and installs for Apache httpd 2.0.47 and Apache httpd 2.0.63. However, when I try to compile for 2.2.15, I get the following result: 8<->8 po...@ubuntu:~/src/c/tracker$ sudo /usr/local/apache22/b

Re: [us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Nilesh Govindarajan
On Tue, Jul 27, 2010 at 5:26 PM, Jefferson Ogata wrote: > On 2010-07-27 10:15, Nilesh Govindarajan wrote: >> If I understood your question properly, you're asking that >> /htdocs/a.php is one fastcgi app and /htdocs/b.php is another. >> If you want it this way, then you will have to add the sheban

Re: [us...@httpd] Module Compilation Changes between 2.0 and 2.2

2010-07-27 Thread Nick Kew
On Tue, 27 Jul 2010 08:03:57 -0400 Michael Powe wrote: > Hello, > > I have a module that compiles and installs for Apache httpd 2.0.47 and > Apache httpd 2.0.63. However, when I try to compile for 2.2.15, I get > the following result: Have you asked the module author? Someone who can write a

Re: [us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Jonas Eckerman
On 2010-07-27 11:43, Hajo Locke wrote: > there is one sentences in the docs which sounds strange In what way does it seem strange? > Currently, only one FastCGI application of any type (AAA or handler) can > be used for a particular request URI. [...] > this means that only on fcgid-script per

[us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Hajo Locke
On 2010-07-27 10:15, Nilesh Govindarajan wrote: If I understood your question properly, you're asking that /htdocs/a.php is one fastcgi app and /htdocs/b.php is another. If you want it this way, then you will have to add the shebang (#!) line to all of your scripts before # This config below ensu

Re: [us...@httpd] Module Compilation Changes between 2.0 and 2.2

2010-07-27 Thread Michael Powe
Hello, On Tue, Jul 27, 2010 at 02:39:32PM +0100, Nick Kew wrote: > On Tue, 27 Jul 2010 08:03:57 -0400 > Michael Powe wrote: > > > Hello, > > > > I have a module that compiles and installs for Apache httpd 2.0.47 and > > Apache httpd 2.0.63. However, when I try to compile for 2.2.15, I get > >

Re: [us...@httpd] failing to determine servers fully qualified doamin name

2010-07-27 Thread Tapas Mishra
We have changed our settings no more Apache. Lighttpd.

Re: [us...@httpd] a chain of proxy servers

2010-07-27 Thread James Godrej
You call Description:Information provided in the Via HTTP response header for proxied requests Syntax:ProxyVia On|Off|Full|Block Default:ProxyVia Off Context:server config, virtual host Status:Extension Module:mod_proxy This directive controls the use of the Via: HTTP header by the pr

Re: [us...@httpd] failing to determine servers fully qualified doamin name

2010-07-27 Thread Frank Gingras
On 07/27/2010 11:58 AM, Tapas Mishra wrote: We have changed our settings no more Apache. Lighttpd. Tapas, We're truly saddened to see you leave this list. Please let us know if you require more assistance in the future. Frank. -

Re: [us...@httpd] a chain of proxy servers

2010-07-27 Thread Frank Gingras
On 07/27/2010 12:01 PM, James Godrej wrote: You call Description: Information provided in the |Via| HTTP response header for proxied requests Syntax: |ProxyVi

Re: [us...@httpd] a chain of proxy servers

2010-07-27 Thread Rich Bowen
On Jul 27, 2010, at 12:01 PM, James Godrej wrote: You need to go back to school and Apache documentation needs serious updates. For non serious people such a documentation is ok. James, We're always very welcoming of new contributors on the Apache documentation mailing list. While we a

Re: [us...@httpd] Re: recommended setup apache/php

2010-07-27 Thread Nilesh Govindarajan
On Tue, Jul 27, 2010 at 7:58 PM, Hajo Locke wrote: >>> On 2010-07-27 10:15, Nilesh Govindarajan wrote: > > If I understood your question properly, you're asking that > /htdocs/a.php is one fastcgi app and /htdocs/b.php is another. > If you want it this way, then you will have to ad

Re: [us...@httpd] GUI for debugging Apache

2010-07-27 Thread Eric Covener
On Sun, Jul 25, 2010 at 1:48 AM, James Godrej wrote: > Is there any GUI for viewing Apache headers which are being served by a > chain > of Reverse Proxy Servers. > I have a cloud which uses a few Proxy Servers in between the client and > actual > server which has to serve the original request. >

Re: [us...@httpd] mod inlcude; htaccess htpasswd SSI do not funtion properly]

2010-07-27 Thread Teun
Where can i find the errorlogs in ubuntu for apache httpd? >> More information about this error may be available in the server error >> log. > > and? > > - > The official User-To-User support forum of the Apache HTTP Server Projec

Re: [us...@httpd] mod inlcude; htaccess htpasswd SSI do not funtion properly]

2010-07-27 Thread Libo Song
On Ubuntu the logs are here: /var/log/apache2/ On Tue, Jul 27, 2010 at 1:54 PM, Teun wrote: > Where can i find the errorlogs in ubuntu for apache httpd? > >>> More information about this error may be available in the server error >>> log. >> >> and? >> >> -

Re: [us...@httpd] mod inlcude; htaccess htpasswd SSI do not funtion properly]

2010-07-27 Thread Teun
Very thanks to you sire ! > On Ubuntu the logs are here: /var/log/apache2/ > > On Tue, Jul 27, 2010 at 1:54 PM, Teun wrote: >> Where can i find the errorlogs in ubuntu for apache httpd? >> More information about this error may be available in the server error log. >>> >>> and? >>> >>> --

Re: [us...@httpd] failing to determine servers fully qualified doamin name

2010-07-27 Thread Matus UHLAR - fantomas
On 27.07.10 21:28, Tapas Mishra wrote: > We have changed our settings no more Apache. > Lighttpd. good news for us. bad news for the lighttpd users lists/forums. -- Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/ Warning: I wish NOT to receive e-mail advertising to this addre

[us...@httpd] mime types

2010-07-27 Thread Marc Fromm
IE8 is opening office 2010 files as zip files. I Googled the problem and found many articles about office 2007 and the fix was to add the docx and xlsx extensions to the /etc/mime.types file. I did all that and restarted httpd. Now instead of IE8 treating "docx" and "xlsx" files as .zip files it

[us...@httpd] RE: mime types

2010-07-27 Thread Marc Fromm
Update: I moved the added mime types from the end of the file to the top of the list of mime types in the file and now everything works. These are the 3 lines added to the mime.types file (they were at the end and now they are at the start of the list of mime tpyes): application/vnd.openxmlforma

[us...@httpd] RE: mime types

2010-07-27 Thread Marc Fromm
Update2: xls files do not open now. There is no pop ups or wrong extensions shown and Excel does not even start. Nothing happens. doc files open along with docx files. xlsx files still open. From: Marc Fromm [mailto:marc.fr...@wwu.edu] Sent: Tuesday, July 27, 2010 1:58 PM To: users@httpd.apache.

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-27 Thread Buddy wu
the file is the initial one which build at installation. here it is # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See http://httpd.apache.org/docs/2.2> for detailed information. # In particular, see

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-27 Thread Buddy wu
I have but the two directives (VirtualHost and SSL related) can't be use together in my machine 在 2010年7月23日 下午4:32,Simone Caruso 写道: > On 23/07/2010 08:50, Buddy wu wrote: > > my environment is windows server 2003 and apache 2.2.10 > > > > if I use VirtualHost director in httpd.conf without

Re: [us...@httpd] a chain of proxy servers

2010-07-27 Thread James Godrej
From: Rich Bowen To: users@httpd.apache.org >However, we do assume that readers of the documentation have some grasp of >Apache configuration files, > There in lies your problem. >Or, said differently, it's impossible to provide every possible example

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-27 Thread Joost de Heer
On Wed, July 28, 2010 4:01 am, Buddy wu wrote: > the file is the initial one which build at installation. here it is [snip] > #LoadModule ssl_module modules/mod_ssl.so [more snip] SSL module is commented out, so SSL won't work. Remove the hash. > NameVirtualHost *:8443 > Keep the arguments to

Re: [us...@httpd] apache 2.2.10 can't use VirtualHost with SSL

2010-07-27 Thread Buddy wu
hi,tanks joost but It won't work for your correction of the configuration file. removed the hash and correct the name but also can't work 2010/7/28 Joost de Heer > On Wed, July 28, 2010 4:01 am, Buddy wu wrote: > > the file is the initial one which build at installation. here it is > > [snip] >