Re: [users@httpd] Apache virus scanning

2016-03-10 Thread Wei-min Lee
. > > 2016-03-09 21:22 GMT+01:00 Wei-min Lee : > >> Using ICAP is a good way to go so that the person uploading files can be >> notified of upload fails due to the virus scan. Relying on filesystem >> virus scans lacks visibility of quarantined/rejected files. >> >

Re: [users@httpd] Apache virus scanning

2016-03-09 Thread Wei-min Lee
Using ICAP is a good way to go so that the person uploading files can be notified of upload fails due to the virus scan. Relying on filesystem virus scans lacks visibility of quarantined/rejected files. On Wed, Mar 9, 2016 at 12:18 PM, Wei-min Lee wrote: > You could use clamav via ICAP w

Re: [users@httpd] Apache virus scanning

2016-03-09 Thread Wei-min Lee
; >> I would imagine that running any AV software that monitors the >> >> filesystem for changes would be sufficient. Why do you think you need >> an >> >> httpd module for this? >> >> >> >> -chris >> >> >> >> - >> >> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> >> For additional commands, e-mail: users-h...@httpd.apache.org >> >> >> > >> > >> > - >> > To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> > For additional commands, e-mail: users-h...@httpd.apache.org >> > >> >> - >> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> For additional commands, e-mail: users-h...@httpd.apache.org >> >> > -- *~Wei-min Lee~*

Re: [users@httpd] Re: throttling IP addresses

2016-02-02 Thread Wei-min Lee
There may not be a simple single solution for you. Iptables can be used to restrict packets that are coming in at an excessively high rate Snort can be used to detect and manage intrusion attempts. ~Sent from my Huawei H1511~ On Feb 2, 2016 8:48 AM, "George Genovezos" wrote: > Yes, > > I am re

Re: [users@httpd] Localhost cannot be accessed when Apache is started

2016-01-14 Thread Wei-min Lee
Is this on windows? What is the command in "The command went through as it should"? This might be a dumb question, but is Apache running on the same machine you're opening your browser on? ~Sent from my Huawei H1511~ On Jan 14, 2016 6:37 PM, "Josiah Asbill" wrote: > I recently tried starting u

Re: [users@httpd] Possible virus via httpd server

2016-01-13 Thread Wei-min Lee
t;> >> > >>> -- >> > >>> Michael D. Berger >> > >>> m.d.ber...@ieee.org >> > >>> http://www.rosemike.net/ >> > >>> >> > >>> >> > >>> >> > >>> >> > >> >> > - >> > >> >> > >> >> > >> > >> > >> > >> > - >> > To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> > For additional commands, e-mail: users-h...@httpd.apache.org >> > >> > >> >> >> - >> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> For additional commands, e-mail: users-h...@httpd.apache.org >> >> >> >> - >> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org >> For additional commands, e-mail: users-h...@httpd.apache.org >> >> > > -- *~Wei-min Lee~*

Re: [users@httpd] Load Balancing - 2 Active nodes & 1 Inactive until threshold

2015-09-04 Thread Wei-min Lee
g or misunderstood the option. > > How will I go about setting up the configuration I have in mind, if it is > possible? > > Thank you in advance. > > Kind Regards > Leon > -- *~Wei-min Lee~*

Re: AW: [users@httpd] rotatelogs.exe keeps one giant file [wd-vc]

2014-09-25 Thread Wei-min Lee
What's the date/time stamp on the one error log? As Kurt said, and from what I read online, files are only generated when there's output for that log. I think 2.4.10 has a -c option to generate a file even if there's no output. Your directory list shows that there are error logs with the date stam

Re: [users@httpd] combining conflicting rewrite rules

2014-09-04 Thread Wei-min Lee
Thanks for the tip. On Thu, Sep 4, 2014 at 1:47 PM, Rich Bowen wrote: > > On 09/04/2014 04:35 PM, Wei-min Lee wrote: > > > 1 - all requests for .html?$, .aspx?$, etc, should be rewritten as > $1.page > 2 - exclude /folderx/(.*)\.html?$ from rule 1 > > >

[users@httpd] combining conflicting rewrite rules

2014-09-04 Thread Wei-min Lee
Hello, I have Apache 2.4 in front of Tomcat 6 hosting sites developed with Autonomy. I'm using Apache to proxy ajp as well as rewrite in my vhost config the following ways... RewriteEngine on RewriteRule ^/main/(.*) /$1 [L,R=301] RewriteRule ^/html/main/(.*) /$1 [L,R=301] RewriteRule ^/$ /defaul

Re: [users@httpd] Serve web pages from a different server

2014-07-16 Thread Wei-min Lee
Redirect assumes the destination is directly accessible whereas with proxy/reverse proxy, the target, as you said, Wim, could be non public servers. ~Sent from my HTC PN07120~ On Jul 16, 2014 5:42 PM, "Wim Lewis" wrote: > > On 16 Jul 2014, at 5:17 PM, John Garrett wrote: > > Is there a way to us

Re: [users@httpd] Serve web pages from a different server

2014-07-16 Thread Wei-min Lee
Yes, you can use vhosts for different sites and use mod_proxy on the vhost stanza for the site on iis be proxied by apache. ~Sent from my HTC PN07120~ On Jul 16, 2014 5:35 PM, "Wei-min Lee" wrote: > Sounds like a case for mod_proxy. > > ~Sent from my HTC PN07120~ > O

Re: [users@httpd] Serve web pages from a different server

2014-07-16 Thread Wei-min Lee
Sounds like a case for mod_proxy. ~Sent from my HTC PN07120~ On Jul 16, 2014 5:18 PM, "John Garrett" wrote: > Is there a way to use the virtual server directive to serve web pages from > a > different server with a different IP address than my production > FreeBSD/Apache box? > > I have DNS set

Re: [users@httpd] How to Redirect a URL

2014-06-18 Thread Wei-min Lee
, Wei-min Lee wrote: > I think what you're looking for is ICAP integration, but I'm not sure if > you can do that solely with Apache. I think you would need to implement a > transparent proxy like squid which will pass user requests through the ICAP > server before handing t

Re: [users@httpd] How to Redirect a URL

2014-06-18 Thread Wei-min Lee
I think what you're looking for is ICAP integration, but I'm not sure if you can do that solely with Apache. I think you would need to implement a transparent proxy like squid which will pass user requests through the ICAP server before handing the request off to your content servers. http://en.w