RE: [EMAIL PROTECTED] verifying and installing apache 2.0.5.8 in AIX/unix environment

2006-05-12 Thread Boyle Owen
-Original Message- From: johnny page [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 8:27 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] verifying and installing apache 2.0.5.8 in AIX/unix environment How exactly do you verify the apache download? This is

RE: [EMAIL PROTECTED] Proxy errors

2006-05-12 Thread Axel-Stéphane SMORGRAV
The error you are referring to is generated during the processing of the backend server response. It may be due to the backend server closing the connection, or the connection timing out. The timeout is 5 minutes by default, so unless the request really takes that long to process, I think it

RE: [EMAIL PROTECTED] https to http proxy with Apache

2006-05-12 Thread Axel-Stéphane SMORGRAV
I guess the response to the POST is a redirect (302) which is not rewritten by any of the ProxyPassReverse directives. In that case the URL of the Location header probably starts with http://andy:port/ instead of https://my.reverse.proxy.com/ What you need to do is figure out exactly what the

[EMAIL PROTECTED] passing request to the server

2006-05-12 Thread Tiago Semprebom
Hello,I'm beginning the development of a handler module and one of the tasks of this module is change some request uri to another uri. I developed this small module (code below), in this small module I compare if an incoming request uri is equal a determinate uri if is true I change this request

[EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Ranjith Kumar
Hi, I have a mail server running postfix, and using squirrel mail for webaccess. Its running based on apache. I have two ip addresses on the system, one is public and another one is for local. All my users can access the website and check their mails from any where (local and internet), I do

Re: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Rainer Sokoll
On Fri, May 12, 2006 at 05:11:33PM +0530, Ranjith Kumar wrote: I do not want to allow all users from outside of my network. I want to allow few users only from the internet. How can I do this? Help me The users have to authenticate themselves on your mailserver - where is your problem?

Re: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Norbul
If yours users have static IP you can use option in directory tag "allow from" or use.htaccess to make authentication - Original Message - From: Ranjith Kumar To: users@httpd.apache.org Sent: Friday, May 12, 2006 1:41 PM Subject: [EMAIL PROTECTED] Access to

Re: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Victor Trac
This is a mail server/webmail client problem and not an apache problem. On 5/12/06, Ranjith Kumar [EMAIL PROTECTED] wrote:Hi, I have a mail server running postfix, and using squirrel mail for webaccess. Its running based on apache. I have two ip addresses on the system, one is public and

RE: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Boyle Owen
-Original Message- From: Ranjith Kumar [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006 1:42 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Access to Webpage Hi, I have a mail server running postfix, and using squirrel mail for webaccess. Its running based on

Re: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Victor Trac
By doing this with apache you are limiting access by source IP and not by actual user accounts. A prohibited user could gain access from an allowed IP address. I understood the problem to mean that he wanted to restrict certain users from anywhere on the internet. -VictorOn 5/12/06, Boyle Owen

RE: [EMAIL PROTECTED] passing request to the server

2006-05-12 Thread Axel-Stéphane SMORGRAV
Unless you are doing this in order to familiarise yourself with writing modules for Apache 2.0, I strongly suggest you use a module that already exists and that provides a lot more flexibility than you module does. That module happens to be mod_rewrite (funny how often it saves the day!)

[EMAIL PROTECTED] suExec problem

2006-05-12 Thread Laszlo Nagy
Hello, I have a SuSe 9.3 server, with apache version 2.0.53 and suexec configured. It was working for months. One day, it stopped working for ALL virtual hosts. I might have misconfigured something, but I'm not sure what is the problem. When I start up apache, I see this in the error_log:

RE: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Boyle Owen
-Original Message- From: Victor Trac [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006 2:20 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Access to Webpage By doing this with apache you are limiting access by source IP and not by actual user accounts. A

RE: [EMAIL PROTECTED] Access to Webpage

2006-05-12 Thread Axel-Stéphane SMORGRAV
VPN/IPsec solutions might also be considered in order to restrict access from the Internet to only those able to establish a secure session... That would restrict the number of users who would be able to probe the webmail gizmo. -ascs -Original Message- From: Boyle Owen [mailto:[EMAIL

[EMAIL PROTECTED] Re: Mod_auth_radius

2006-05-12 Thread Joost de Heer
Mike VanHorn wrote: I'm using mod_auth_radius with Apache 2.2.2 to protect a directory. Here's the entries from the log file: [Thu May 11 15:32:43 2006] [debug] mod_auth_radius-2.0.c(1154): Radius Auth for: servername requests /path-to-protected-directory/ :

Re: [EMAIL PROTECTED] performance prob due to httpd's piling up

2006-05-12 Thread Chris
On 08/05/06, Billy Nab [EMAIL PROTECTED] wrote: -Original Message- From: Ron Arts [mailto:[EMAIL PROTECTED] Sent: Monday, May 08, 2006 2:33 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] performance prob due to httpd's piling up Bennet, - understand that the apache docs

RE: [EMAIL PROTECTED] Totally stumped on httpd, gcc solaris 10

2006-05-12 Thread Chris Edwards
Thanks for all the replies I have been getting... Here is some more information on my enviroment. Here is what I am using to try and compile Apache2 ... ./configure --with-perl=/usr/bin/perl --prefix=/www --enable-module=so --enable-ssl --enable-setenvif --with-ssl=/usr/local/ssl I

[EMAIL PROTECTED] Re: Mod_auth_radius

2006-05-12 Thread Mike VanHorn
Did you load all the needed modules? You need mod_auth_basic.so for basic authentication. Yes. Well, I think so, anyway. I'm looking in to mod_authnz_external now, as it comes with a radius authenticator, and adheres to the new authentication model that Apache 2.1/2.2.x introduced. From

[EMAIL PROTECTED] CGI permissions on Debian

2006-05-12 Thread Tony Heal
I am running a Debian 3.1 (sarge) server and the following apache packages installed: ii apache 1.3.33-6sarge1 versatile, high-performance HTTP serverii apache-common 1.3.33-6sarge1 support files for all Apache web serversii apache2-utils 2.0.54-5 utility programs for web serversii

RE: [EMAIL PROTECTED] Proxy errors

2006-05-12 Thread Axel-Stéphane SMORGRAV
As far as I can tell from the code it should return HTTP_BAD_GATEWAY, i.e. HTTP 502. You can use the ErrorDocument directive to specify a HTML page to return to the client in case the error occurs. -ascs -Original Message- From: Matthew Claridge [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: [EMAIL PROTECTED] Proxy errors

2006-05-12 Thread Matthew Claridge
Thats what i thought, but I don't see any 502 errors in the access log and my ErrorDocument handler doesn't catch it Matt on 12/05/2006 15:58 Axel-Stéphane SMORGRAV said the following: As far as I can tell from the code it should return HTTP_BAD_GATEWAY, i.e. HTTP 502. You can use the

[EMAIL PROTECTED] Web Server Performace Issues

2006-05-12 Thread linux
Hey Guys, I have a web server running: apache - httpd-2.2.0 php - php-5.1.2 The site that is hosted on this server has very high traffic and is on a 50mbit bandwidth: qdisc tbf 8006: dev eth0 rate 50Mbit burst 1531b lat 48.8ms The problem is that during peak hours (sometimes during normal

Re: [EMAIL PROTECTED] https to http proxy with Apache

2006-05-12 Thread Bo Najdrovsky
Boyle Owen wrote: Let's focus on this bit: however whenever there is an incoming POST from a form in the web application, the response from the Tomcat causes a switch to HTTP, where I need it to remain HTTPS. I'm not sure I completely understand.. When you say, causes a switch to

Re: [EMAIL PROTECTED] Web Server Performace Issues

2006-05-12 Thread Joshua Slive
On 5/12/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey Guys, I have a web server running: apache - httpd-2.2.0 php - php-5.1.2 The site that is hosted on this server has very high traffic and is on a 50mbit bandwidth: qdisc tbf 8006: dev eth0 rate 50Mbit burst 1531b lat 48.8ms The

Re: [EMAIL PROTECTED] passing request to the server

2006-05-12 Thread Bill Jones
Skip using mod_rewrite or mod_proxy and just do Redirect/RedirectMatch Redirect permanent /tiago/precisas http://my.application.server.com/tiago/imprecisas -- WC (Bill) Jones -- http://youve-reached-the.endoftheinternet.org/ -

[EMAIL PROTECTED] Name-based Virtual Hosts and Reverse Proxy with ProxyPreserveHost On

2006-05-12 Thread Brian Bonner
Hello. I have a Apache 2.2 setup in a reverse proxy configuration. On the Proxy Server I have: NameVirtualHost *:80 VirtualHost *:80 ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www/foo/html ServerName www.foo.com ErrorLog logs/www.foo.com-error_log CustomLog

Re: [EMAIL PROTECTED] Web Server Performace Issues

2006-05-12 Thread edward . dunkle
We have been testing with the following tunings on a similar linux box. I would be interested to here if your performance improves with this: Linux Tuning : set the following values in /etc/sysctl.conf kernel.msgmni = 1024 kernel.sem = 1000 32000 32 512 fs.file-max = 2097152 fs.inode-max =

[EMAIL PROTECTED] authentication help - trying to provide PAM auth

2006-05-12 Thread Louis LeBlanc
Hey folks. I'm having some difficulties with an authorization configuration. I am running Apache 2.0.58, though upgrading to the 2.2 release is not out of the question if it will help achieve the goal. This is running on a FreeBSD 5.4_RELEASE-p12 system, and is connected to a backend Tomcat

[EMAIL PROTECTED] mod_dav_svn.so error on startup

2006-05-12 Thread Jay G. Scott
hi, newbie to apache building; not a newbie otherwise. apachectl start yields this error: Syntax error on line 232 of /opt/depot/httpd-2.0.58/conf/httpd.conf: Cannot load /opt/depot/httpd-2.0.58/modules/mod_dav_svn.so into server: ld.so.1: /opt/depot/httpd-2.0.58/bin/httpd: fatal: relocation

RE: [EMAIL PROTECTED] Name-based Virtual Hosts and Reverse Proxy with ProxyPreserveHost On

2006-05-12 Thread Vic Feria
Here is a simpler way: (This works only if the other server is within the LAN). I have the drive from the other server mapped into the main server. In the config file I entered, in your case if would look like this: Alias /bb D:/phpBB2 # where D is the mapped drive with the directory

Re: [EMAIL PROTECTED] passing request to the server

2006-05-12 Thread Brian Rectanus
I'll assume you are just testing some code and trying to learn. In that case, I think you just overlooked a missed else in there (better indention might help see that): if (!strcmp(r-uri,/tiago/precisas/index1.htm)){ r-uri = /tiago/imprecisas/index1.htm; } /* Insert else here */

[EMAIL PROTECTED] Using SSI trough mod_rewrite+mod_proxy

2006-05-12 Thread Domingos Parra Novo
Hiyas, I have a slow backend server (running apache 1.3 + vignette), which does some SSI to generate content to our users. The load on these servers is quite high right now. I'm trying to remove the SSI processing on these hosts, in an atempt to lower the CPU usage of those

Re: [EMAIL PROTECTED] https to http proxy with Apache

2006-05-12 Thread Brian Rectanus
On 5/12/06, Bo Najdrovsky [EMAIL PROTECTED] wrote: Boyle Owen wrote: Let's focus on this bit: however whenever there is an incoming POST from a form in the web application, the response from the Tomcat causes a switch to HTTP, where I need it to remain HTTPS. I'm not sure I completely

Re: [EMAIL PROTECTED] Using SSI trough mod_rewrite+mod_proxy

2006-05-12 Thread Joshua Slive
On 5/12/06, Domingos Parra Novo [EMAIL PROTECTED] wrote: OB: almost forgot to note, I'm using Apache 1.3.33 on both groups of machines, and unless it is really mandatory, I'm unable to update them to Apache 2.0/2.2. :( Using mod_include as a filter (which is exactly what you are trying to do)

[EMAIL PROTECTED] Re: Mod_auth_radius

2006-05-12 Thread Joost de Heer
Mike VanHorn wrote: Did you load all the needed modules? You need mod_auth_basic.so for basic authentication. Yes. Well, I think so, anyway. I'm looking in to mod_authnz_external now, as it comes with a radius authenticator, and adheres to the new authentication model that Apache

Re: [EMAIL PROTECTED] https to http proxy with Apache

2006-05-12 Thread Bo Najdrovsky
Brian Rectanus wrote: It would help to post the tomcat-workers.conf, but I'll take a guess and assume this is what it looks like: LB1 andy:8012 LB2 andy:8022 LB3 andy:8032 LB3 andy:8042 ALL andy:8012|andy:8022|andy:8032|andy:8042 Yep, that's exactly what it looks like. Does it make

Re: [EMAIL PROTECTED] dbmmanage vs htdbm

2006-05-12 Thread Bill Jones
On 5/12/06, Ann Hopkins [EMAIL PROTECTED] wrote: Configuration: Linux, Apache 2.2.2, PHP 5.1.3, and Modsecurity 1.9.3, Perl 5.8.8 I have a pre-existing user password file which worked fine until Apache 2.2.2. This version of mod-security I have found to work correctly with 2.2.2:

RE: [EMAIL PROTECTED] verifying and installing apache 2.0.5.8 in AIX/unix environment

2006-05-12 Thread johnny page
I have AIX 5.2 , so how do i tell if I have md5 or pgp on my system. From: Boyle Owen [EMAIL PROTECTED] Reply-To: users@httpd.apache.org To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] verifying and installing apache 2.0.5.8 in AIX/unix environment Date: Fri, 12 May 2006 08:53:23