Re: [EMAIL PROTECTED] Forbidden...

2007-07-12 Thread Hamilton Vera
With this conf, it will only work for localhost requests Order deny,allow Deny from all Allow from 127.0.0.1 Allow from ::1 (by the way I never saw this before) Please correct if I am wrong Maybe you can get more tips looking in the error_log. []´s Hamilton Vera int

Re: [EMAIL PROTECTED] Writing a cgi script for downloading

2007-07-06 Thread Hamilton Vera
inter-library dependencies are being dropped." droppeddeps=yes fi ;; Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know" On Fri, 6 Jul 2007, Tommy Nordgre

Re: [EMAIL PROTECTED] dealing with CPU hogs

2007-07-06 Thread Hamilton Vera
Maybe you can monitor the CGI's with mod_perl and setting pam/system limits to apache user. []'s Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know" On Fri, 6 Jul 2007, Tony

Re: [EMAIL PROTECTED] Apache 2.2.3: "You don't have permission to access the requested directory" for public_html directories w/o index.html

2007-07-06 Thread Hamilton Vera
Greetings http://httpd.apache.org/docs/2.2/mod/mod_autoindex.html Have fun. Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know" On Fri, 6 Jul 2007, [EMAIL PROTECTED] wrote: I am upgrad

Re: [EMAIL PROTECTED] Command problems - Need help!

2007-07-03 Thread Hamilton Vera
Try to use them via cmd ( or command , a kind of Microsoft Shell ). Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know" On Tue, 3 Jul 2007, Siegard wrote: This is a very newbie question b

Re: [EMAIL PROTECTED] limiting connections per ip address in apache2 when under attack

2007-06-21 Thread Hamilton Vera
It is just a target name $IPTABLES -N logdropdos $IPTABLES -A logdropdos -j LOG --log-level INFO --log-prefix "[logdropdos]" $IPTABLES -A logdropdos -j DROP Just to make easier the log analisys, you can also use "-j DROP" instead. Hamilton Vera int Administrator

Re: [EMAIL PROTECTED] limiting connections per ip address in apache2 when under attack

2007-06-21 Thread Hamilton Vera
You can try to use iptables, to limit the number of TCP connections $IPTABLES -A INPUT -p TCP -i $WAN -s 0/0 --syn --dport 80 -m connlimit --connlimit-above 10 -j logdropdos Or implement a Freebsd firewall with QoS, applying shapes to parallel TCP connections. I hope this help. On Thu, 21

Re: [EMAIL PROTECTED] Internet Explorer 7 only downloads half of file

2007-05-28 Thread Hamilton Vera
The only problem till now with IE7, it is related with SSL certificates, no problems with downloads yet ( even in version 1.3.34 and 1.3.37). Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know&quo

Re: [EMAIL PROTECTED] Check if mod_ssl was built

2007-05-16 Thread Hamilton Vera
Take a look at error.log Ex: [Wed May 09 14:30:13 2007] [notice] Apache/2.2.4 (Unix) mod_ssl/2.2.4 OpenSSL/0.9.7g PHP/5.2.2 mod_perl/2.0.3 Perl/v5.8.8 configured -- resuming normal operations Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br

Re: [EMAIL PROTECTED] httpd not starting

2007-05-15 Thread Hamilton Vera
http://httpd.apache.org/dev/debugging.html []'s Hamilton Vera int Administrator (char Network[],char ComputationalSystems[]); http://antispam.br/ "Google is my shepherd, no want shall I know" On Tue, 15 May 2007, Costrell, Daniel N (Dan Costrell) wrote: I installed apache

[EMAIL PROTECTED] Apache's module debug best practices

2007-01-11 Thread Hamilton Vera
Hi list. I am looking for tips to debug a module (built in kylix, like a DSO) running in apache 1.3.34. Unfortunately I don't have access to the source code and I have to find out why this module is consuming a lot of CPU and memory I had already read some documentation like http://httpd.apache.